-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.42 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.42 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
{
"name": "clawapp",
"version": "1.7.0",
"private": true,
"description": "ClawApp - OpenClaw AI 智能体的 H5 移动端聊天客户端",
"homepage": "https://clawapp.qt.cool",
"repository": {
"type": "git",
"url": "https://github.com/qingchencloud/clawapp.git"
},
"scripts": {
"dev:server": "cd server && node index.js",
"dev:h5": "cd h5 && npx vite --host",
"dev:desktop": "cd electron && npx electron .",
"build:h5": "cd h5 && npx vite build",
"build:desktop": "npm run build:h5 && cd electron && npx electron-builder --win --mac --linux",
"build:desktop:win": "npm run build:h5 && cd electron && npx electron-builder --win",
"build:desktop:mac": "npm run build:h5 && cd electron && npx electron-builder --mac",
"build:desktop:linux": "npm run build:h5 && cd electron && npx electron-builder --linux",
"start": "cd server && node index.js",
"install:all": "cd server && npm install && cd ../h5 && npm install && cd ../electron && npm install"
},
"keywords": [
"openclaw",
"clawapp",
"h5",
"mobile",
"chat",
"websocket",
"ai-agent"
],
"author": "武汉晴辰天下网络科技有限公司 <contact@qingchencloud.com>",
"license": "MIT",
"dependencies": {
"vite-plugin-pwa": "^1.2.0"
},
"devDependencies": {
"@capacitor/android": "^8.1.0",
"@capacitor/cli": "^8.1.0",
"@capacitor/core": "^8.1.0",
"typescript": "^5.9.3"
}
}