-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
123 lines (123 loc) · 3.02 KB
/
package.json
File metadata and controls
123 lines (123 loc) · 3.02 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
{
"name": "microi-openclaw",
"version": "1.5.2",
"description": "Microi.OpenClaw - Local management tool for OpenClaw",
"author": "microi-net",
"private": true,
"main": "electron/main.js",
"scripts": {
"postinstall": "node scripts/setup.js",
"dev:server": "node server/index.js",
"dev:client": "vite",
"dev": "concurrently \"npm run dev:server\" \"npm run dev:client\"",
"dev:electron": "concurrently \"vite\" \"wait-on http://localhost:5566 && electron .\"",
"build:web": "vite build",
"prebuild:win": "node scripts/bump-version.js",
"build:win": "npm run build:web && node scripts/electron-build.js win",
"build:mac": "npm run build:web && electron-builder --mac",
"build:linux": "npm run build:web && electron-builder --linux",
"start": "node server/index.js --production"
},
"dependencies": {
"axios": "^1.6.7",
"chokidar": "^3.5.3",
"cors": "^2.8.5",
"express": "^4.18.2",
"node-cron": "^4.2.1",
"node-machine-id": "^1.1.12",
"systeminformation": "^5.21.22",
"tar": "^7.5.11",
"tree-kill": "^1.2.2",
"ws": "^8.16.0",
"yaml": "^2.3.4"
},
"devDependencies": {
"@element-plus/icons-vue": "^2.3.1",
"@vitejs/plugin-vue": "^5.0.3",
"concurrently": "^8.2.2",
"electron": "^33.3.1",
"electron-builder": "^25.1.8",
"element-plus": "^2.5.6",
"openclaw": "^2026.3.11",
"pinia": "^2.1.7",
"vite": "^5.0.12",
"vue": "^3.4.15",
"vue-router": "^4.2.5",
"wait-on": "^8.0.2",
"xterm": "^5.3.0",
"xterm-addon-fit": "^0.8.0"
},
"build": {
"appId": "net.microi.openclaw",
"productName": "Microi.OpenClaw",
"directories": {
"output": "release"
},
"asar": false,
"files": [
"electron/**/*",
"server/**/*",
"scripts/**/*",
"!scripts/openclaw-bundle*",
"package.json"
],
"extraResources": [
{
"from": "dist",
"to": "dist"
}
],
"win": {
"target": [
{
"target": "nsis",
"arch": [
"x64"
]
}
],
"icon": "electron/icon.ico",
"signAndEditExecutable": false,
"artifactName": "${productName}-${version}-Setup.${ext}"
},
"nsis": {
"oneClick": false,
"perMachine": true,
"allowToChangeInstallationDirectory": true,
"installerLanguages": [
"zh_CN",
"en_US"
],
"shortcutName": "Microi.OpenClaw"
},
"mac": {
"target": [
{
"target": "dmg",
"arch": [
"x64",
"arm64"
]
},
{
"target": "zip",
"arch": [
"x64",
"arm64"
]
}
],
"icon": "electron/icon.png",
"category": "public.app-category.developer-tools",
"artifactName": "${productName}-${version}-mac-${arch}.${ext}"
},
"linux": {
"target": [
"AppImage",
"deb"
],
"icon": "electron/icon.png",
"category": "Development"
}
}
}