-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.94 KB
/
Copy pathpackage.json
File metadata and controls
51 lines (51 loc) · 1.94 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
{
"name": "kukechat-client",
"version": "1.2.1",
"private": true,
"type": "module",
"description": "面向 CCW / Scratch 社区的实时聊天客户端,支持社区扩展、桌面端与移动端。",
"license": "MIT",
"scripts": {
"dev": "vite",
"sync:desktop-version": "node scripts/sync-desktop-version.mjs",
"dev:desktop": "npm run sync:desktop-version && vite --config vite.desktop.config.ts",
"build": "npm run typecheck && vite build",
"build:desktop-web": "npm run sync:desktop-version && npm run typecheck && vite build --config vite.desktop.config.ts",
"build:mobile-web": "npm run typecheck && vite build --config vite.mobile.config.ts",
"android:sync": "npm run build:mobile-web && cap sync android",
"android:apk": "powershell -ExecutionPolicy Bypass -File scripts/build-android.ps1",
"preview": "vite preview",
"tauri:dev": "npm run sync:desktop-version && tauri dev",
"tauri:build": "npm run sync:desktop-version && tauri build",
"typecheck": "tsc --noEmit -p tsconfig.json --pretty && tsc --noEmit -p tsconfig.node.json --pretty"
},
"dependencies": {
"@capacitor/android": "^6.2.1",
"@capacitor/app": "^6.0.3",
"@capacitor/core": "^6.2.1",
"@capacitor/keyboard": "^6.0.4",
"@capacitor/local-notifications": "^6.1.2",
"@capacitor/preferences": "^6.0.3",
"@tanstack/react-query": "^5.59.16",
"@tauri-apps/api": "^2.11.0",
"@tauri-apps/plugin-notification": "^2.3.1",
"@vitejs/plugin-react": "^4.3.3",
"lucide-react": "^1.14.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"typescript": "^5.6.3",
"vite": "^5.4.10",
"zustand": "^5.0.1"
},
"devDependencies": {
"@capacitor/cli": "^6.2.1",
"@tauri-apps/cli": "^2.5.0",
"@types/node": "^22.8.1",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"autoprefixer": "^10.4.20",
"postcss": "^8.4.47",
"tailwindcss": "^3.4.14",
"terser": "^5.47.1"
}
}