-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.4 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.4 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
52
53
54
55
56
57
58
{
"name": "claude-agent-app",
"version": "2.1.0",
"description": "Claude Code Agent 可视化客户端 - 桌面 + 移动端",
"main": "main.js",
"scripts": {
"start": "electron .",
"dev": "concurrently \"npm run watch\" \"electron .\"",
"watch": "webpack --watch --mode development",
"build": "webpack --mode production",
"pack": "electron-builder --dir",
"dist": "electron-builder",
"server": "node server/index.js",
"server:dev": "NODE_ENV=development node server/index.js"
},
"build": {
"appId": "com.claude.agent",
"productName": "Claude Agent",
"directories": {
"output": "release"
},
"files": [
"dist/**/*",
"main.js",
"preload.js",
"logger.js",
"crypto.js",
"sync-client.js"
],
"mac": {
"target": "dmg"
},
"win": {
"target": "nsis"
}
},
"dependencies": {
"express": "^4.18.0",
"cors": "^2.8.5",
"marked": "^12.0.0",
"highlight.js": "^11.9.0",
"mermaid": "^10.9.0",
"dompurify": "^3.0.0"
},
"devDependencies": {
"electron": "^28.0.0",
"electron-builder": "^24.9.0",
"concurrently": "^8.2.0",
"webpack": "^5.89.0",
"webpack-cli": "^5.1.4",
"html-webpack-plugin": "^5.6.0",
"css-loader": "^6.8.0",
"style-loader": "^3.3.0",
"babel-loader": "^9.1.0",
"@babel/core": "^7.23.0",
"@babel/preset-env": "^7.23.0"
}
}