-
Notifications
You must be signed in to change notification settings - Fork 176
Expand file tree
/
Copy pathpackage.json
More file actions
215 lines (215 loc) · 10.4 KB
/
Copy pathpackage.json
File metadata and controls
215 lines (215 loc) · 10.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
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
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
{
"name": "wesight",
"private": true,
"author": {
"name": "WeSight",
"email": "hello@wesight.ai"
},
"license": "MIT",
"version": "2026.6.24",
"openclaw": {
"version": "v2026.3.2",
"repo": "https://github.com/openclaw/openclaw.git",
"plugins": [
{
"id": "dingtalk",
"npm": "@soimy/dingtalk",
"version": "3.4.0"
},
{
"id": "feishu-openclaw-plugin",
"npm": "@larksuiteoapi/feishu-openclaw-plugin",
"version": "2026.3.8"
},
{
"id": "openclaw-qqbot",
"npm": "@tencent-connect/openclaw-qqbot",
"version": "1.6.4"
},
{
"id": "wecom-openclaw-plugin",
"npm": "@wecom/wecom-openclaw-plugin",
"version": "1.0.12"
},
{
"id": "openclaw-weixin",
"npm": "@tencent-weixin/openclaw-weixin",
"version": "1.0.3"
},
{
"id": "moltbot-popo",
"npm": "moltbot-popo",
"version": "1.0.66",
"registry": "https://npm.nie.netease.com",
"optional": true
},
{
"id": "openclaw-nim",
"npm": "openclaw-nim",
"version": "0.3.1"
},
{
"id": "openclaw-netease-bee",
"npm": "openclaw-netease-bee",
"version": "0.1.3"
}
]
},
"main": "dist-electron/main.js",
"engines": {
"node": ">=24 <25"
},
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"lint": "eslint src/",
"format": "prettier --write .",
"format:check": "prettier --check .",
"prepare": "husky",
"test": "vitest run",
"test:node": "npm run compile:electron && node --test tests/*.test.mjs",
"test:memory": "npm run compile:electron && node --test tests/memoryFileStructure.test.mjs",
"pretest": "npm rebuild better-sqlite3",
"preview": "vite preview",
"compile:electron": "tsc --project electron-tsconfig.json",
"precompile:electron": "electron-builder install-app-deps",
"build:skill:web-search": "npm install --prefix SKILLs/web-search && npx tsc -p SKILLs/web-search/tsconfig.json",
"build:skill:tech-news": "node scripts/build-skill-tech-news.js",
"build:skill:email": "cd SKILLs/imap-smtp-email && npm install --production",
"build:skills": "npm run build:skill:web-search && npm run build:skill:tech-news && npm run build:skill:email",
"start:electron": "cross-env NODE_ENV=development ELECTRON_START_URL=http://localhost:5175 electron .",
"electron:dev": "rimraf dist-electron && npm run compile:electron && concurrently -k --success first --handle-input \"vite --port 5175\" \"wait-on -v -t 120000 -d 20000 http://localhost:5175 dist-electron/.electron-ready && npm run start:electron\"",
"electron:dev:openclaw": "npm run electron:dev",
"electron:dev:hermes": "npm run electron:dev",
"postinstall": "patch-package && electron-builder install-app-deps",
"pack": "npm run setup:python-runtime && npm run build && npm run compile:electron && npm run build:skills && node scripts/run-electron-builder-with-date.cjs --dir",
"dist": "npm run setup:python-runtime && npm run build && npm run compile:electron && npm run build:skills && node scripts/run-electron-builder-with-date.cjs",
"dist:mac": "node scripts/run-electron-builder-with-date.cjs --mac --config electron-builder.json",
"predist:mac": "npm run build && npm run compile:electron && npm run build:skills",
"dist:mac:x64": "npm run build && npm run compile:electron && npm run build:skills && node scripts/run-electron-builder-with-date.cjs --mac --x64",
"dist:mac:arm64": "npm run build && npm run compile:electron && npm run build:skills && node scripts/run-electron-builder-with-date.cjs --mac --arm64",
"dist:mac:universal": "npm run build && npm run compile:electron && npm run build:skills && node scripts/run-electron-builder-with-date.cjs --mac --universal",
"verify:mac:x64-artifact": "node scripts/verify-mac-artifact.cjs mac-x64",
"verify:mac:arm64-artifact": "node scripts/verify-mac-artifact.cjs mac-arm64",
"predist:win": "npm run build && npm run compile:electron && npm run build:skills",
"dist:win": "npm run setup:python-runtime && npm run build && npm run compile:electron && npm run build:skills && node scripts/run-electron-builder-with-date.cjs --win --x64",
"predist:linux": "npm run build && npm run compile:electron && npm run build:skills",
"dist:linux": "npm run build && npm run compile:electron && npm run build:skills && node scripts/run-electron-builder-with-date.cjs --linux",
"clean:release": "rimraf release",
"generate:tray-icons": "node scripts/generate-tray-icons.js",
"generate:brand-assets": "node scripts/generate-brand-assets.cjs",
"setup:mingit": "node scripts/setup-mingit.js",
"setup:python-runtime": "node scripts/setup-python-runtime.js",
"perf:fixtures": "node scripts/generate-performance-fixtures.cjs",
"openclaw:ensure": "node scripts/ensure-openclaw-version.cjs",
"openclaw:patch": "node scripts/apply-openclaw-patches.cjs",
"openclaw:plugins": "node scripts/ensure-openclaw-plugins.cjs",
"openclaw:extensions:local": "node scripts/sync-local-openclaw-extensions.cjs",
"openclaw:bundle": "node scripts/bundle-openclaw-gateway.cjs",
"openclaw:precompile": "node scripts/precompile-openclaw-extensions.cjs",
"openclaw:prune": "node scripts/prune-openclaw-runtime.cjs",
"openclaw:runtime:host": "node scripts/openclaw-runtime-host.cjs",
"openclaw:runtime:mac-arm64": "npm run openclaw:ensure && npm run openclaw:patch && node scripts/run-build-openclaw-runtime.cjs mac-arm64 && node scripts/sync-openclaw-runtime-current.cjs mac-arm64 && npm run openclaw:bundle && npm run openclaw:plugins && npm run openclaw:extensions:local && npm run openclaw:precompile && npm run openclaw:prune",
"openclaw:runtime:mac-x64": "npm run openclaw:ensure && npm run openclaw:patch && node scripts/run-build-openclaw-runtime.cjs mac-x64 && node scripts/sync-openclaw-runtime-current.cjs mac-x64 && npm run openclaw:bundle && npm run openclaw:plugins && npm run openclaw:extensions:local && npm run openclaw:precompile && npm run openclaw:prune",
"openclaw:runtime:win-x64": "npm run openclaw:ensure && npm run openclaw:patch && node scripts/run-build-openclaw-runtime.cjs win-x64 && node scripts/sync-openclaw-runtime-current.cjs win-x64 && npm run openclaw:bundle && npm run openclaw:plugins && npm run openclaw:extensions:local && npm run openclaw:precompile && npm run openclaw:prune",
"openclaw:runtime:win-arm64": "npm run openclaw:ensure && npm run openclaw:patch && node scripts/run-build-openclaw-runtime.cjs win-arm64 && node scripts/sync-openclaw-runtime-current.cjs win-arm64 && npm run openclaw:bundle && npm run openclaw:plugins && npm run openclaw:extensions:local && npm run openclaw:precompile && npm run openclaw:prune",
"openclaw:runtime:linux-x64": "npm run openclaw:ensure && npm run openclaw:patch && node scripts/run-build-openclaw-runtime.cjs linux-x64 && node scripts/sync-openclaw-runtime-current.cjs linux-x64 && npm run openclaw:bundle && npm run openclaw:plugins && npm run openclaw:extensions:local && npm run openclaw:precompile && npm run openclaw:prune",
"openclaw:runtime:linux-arm64": "npm run openclaw:ensure && npm run openclaw:patch && node scripts/run-build-openclaw-runtime.cjs linux-arm64 && node scripts/sync-openclaw-runtime-current.cjs linux-arm64 && npm run openclaw:bundle && npm run openclaw:plugins && npm run openclaw:extensions:local && npm run openclaw:precompile && npm run openclaw:prune",
"regenerate:icon": "bash scripts/regenerate-mac-icon.sh",
"fix:mac-icon": "bash scripts/fix-mac-icon-display.sh"
},
"dependencies": {
"@anthropic-ai/claude-agent-sdk": "0.2.12",
"@electron/remote": "^2.0.12",
"@headlessui/react": "^1.7.18",
"@heroicons/react": "^2.1.1",
"@larksuite/openclaw-lark": "^2026.3.17",
"@larksuite/openclaw-lark-tools": "~1.0.26",
"@larksuiteoapi/node-sdk": "^1.58.0",
"@modelcontextprotocol/sdk": "^1.27.1",
"@moonshot-ai/kimi-agent-sdk": "^0.1.8",
"@nodesecure/js-x-ray": "^14.2.0",
"@reduxjs/toolkit": "^2.2.1",
"@types/uuid": "^10.0.0",
"@wecom/wecom-aibot-sdk": "^0.1.0",
"better-sqlite3": "^12.8.0",
"bufferutil": "^4.1.0",
"cheerio": "^1.2.0",
"cron-parser": "^5.5.0",
"cronstrue": "^3.14.0",
"dompurify": "^3.3.1",
"electron-log": "^5.4.3",
"extract-zip": "^2.0.1",
"form-data": "^4.0.5",
"js-yaml": "^4.1.1",
"katex": "^0.16.21",
"mermaid": "^10.9.5",
"nim-web-sdk-ng": "10.9.77-alpha.4",
"npm": "^11.11.0",
"phaser": "^3.80.1",
"qrcode.react": "^4.2.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-markdown": "^10.0.0",
"react-redux": "^9.1.0",
"react-syntax-highlighter": "^15.6.1",
"recharts": "^3.8.1",
"rehype-katex": "^7.0.1",
"remark-gfm": "^4.0.1",
"remark-math": "^6.0.0",
"tar": "^7.5.11",
"utf-8-validate": "^6.0.6",
"uuid": "^11.1.0",
"yazl": "^3.3.1",
"zod": "^4.3.6"
},
"overrides": {
"@electron/osx-sign": {
"isbinaryfile": "^5.0.0"
}
},
"devDependencies": {
"@commitlint/cli": "^20.5.0",
"@commitlint/config-conventional": "^20.5.0",
"@tailwindcss/typography": "^0.5.16",
"@types/better-sqlite3": "^7.6.13",
"@types/dompurify": "^3.0.5",
"@types/extract-zip": "^2.0.1",
"@types/js-yaml": "^4.0.9",
"@types/node": "^24.0.0",
"@types/react": "^18.2.0",
"@types/react-dom": "^18.2.0",
"@types/react-syntax-highlighter": "^15.5.13",
"@types/yazl": "^3.3.0",
"@typescript-eslint/eslint-plugin": "^8.57.1",
"@typescript-eslint/parser": "^8.57.1",
"@vitejs/plugin-react": "^4.2.1",
"7zip-bin": "^5.2.0",
"autoprefixer": "^10.4.17",
"concurrently": "^8.2.2",
"cross-env": "^7.0.3",
"electron": "^40.2.1",
"electron-builder": "^24.12.0",
"esbuild": "^0.21.5",
"eslint": "^9.39.4",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.4.26",
"eslint-plugin-simple-import-sort": "^12.1.1",
"globals": "^17.4.0",
"husky": "^9.1.7",
"lint-staged": "^16.4.0",
"patch-package": "^8.0.1",
"postcss": "^8.4.35",
"prettier": "^3.8.1",
"rimraf": "^5.0.5",
"rss-parser": "^3.13.0",
"tailwindcss": "^3.4.1",
"typescript": "^5.7.3",
"vite": "^5.1.4",
"vite-plugin-electron": "^0.28.0",
"vite-plugin-electron-renderer": "^0.14.5",
"vitest": "^4.1.0",
"wait-on": "^7.2.0"
}
}