-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
96 lines (96 loc) · 3.18 KB
/
package.json
File metadata and controls
96 lines (96 loc) · 3.18 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
{
"name": "openclaw-desktop",
"version": "0.1.0",
"description": "Community-maintained Windows desktop app and installer for OpenClaw.",
"type": "module",
"main": "out/main/index.js",
"scripts": {
"dev": "node scripts/dev.mjs",
"build": "electron-vite build",
"preview": "electron-vite preview",
"lint": "eslint .",
"type-check": "tsc --noEmit",
"download-node": "tsx scripts/download-node.ts",
"download-openclaw": "tsx scripts/download-openclaw.ts",
"prepare-bundle": "tsx scripts/prepare-bundle.ts",
"verify-bundle": "tsx scripts/verify-bundle.ts",
"verify-native-modules": "tsx scripts/verify-native-modules.ts",
"clean-resources": "tsx scripts/clean-resources.ts",
"generate-resources": "node scripts/generate-resources.mjs",
"package:win": "pnpm run clean-resources && pnpm run verify-bundle && cross-env REGENERATE_ICON=1 pnpm run generate-resources && pnpm run prepare-bundle && cross-env CSC_IDENTITY_AUTO_DISCOVERY=false SKIP_EXE_RESOURCE_EDIT=0 ELECTRON_BUILDER_BINARIES_MIRROR=https://registry.npmmirror.com/-/binary/electron-builder-binaries/ pnpm exec electron-builder --win --x64 --config electron-builder.config.cjs --publish never",
"package:win:signed": "node scripts/package-win-signed.mjs",
"generate-dev-cert": "node scripts/generate-dev-cert.mjs",
"export-dev-cert-for-ci": "node scripts/export-dev-cert-for-ci.mjs"
},
"dependencies": {
"@radix-ui/react-checkbox": "^1.3.3",
"@radix-ui/react-select": "^2.2.6",
"@radix-ui/react-slot": "^1.1.0",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"electron-updater": "^6.8.3",
"i18next": "^24.2.0",
"json5": "^2.2.3",
"lucide-react": "^0.460.0",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-i18next": "^15.1.0",
"react-markdown": "^10.1.0",
"tailwind-merge": "^2.1.0",
"ws": "^8.19.0",
"zustand": "^5.0.11"
},
"devDependencies": {
"@eslint/js": "^9.17.0",
"@tailwindcss/vite": "^4.0.0",
"@types/node": "^22.10.0",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"@types/ws": "^8.18.1",
"@vitejs/plugin-react": "^4.3.4",
"adm-zip": "^0.5.16",
"cross-env": "^10.1.0",
"electron": "^33.0.0",
"electron-builder": "^26.8.1",
"electron-vite": "^3.1.0",
"eslint": "^9.17.0",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.0.1",
"sharp": "^0.34.5",
"tailwindcss": "^4.0.0",
"to-ico": "^1.1.5",
"tsx": "^4.21.0",
"typescript": "~5.9.0",
"typescript-eslint": "^8.56.1",
"xlsx": "^0.18.5"
},
"pnpm": {
"onlyBuiltDependencies": [
"electron",
"esbuild",
"sharp"
]
},
"keywords": [
"openclaw",
"openclaw-desktop",
"openclaw-windows",
"openclaw-installer",
"electron",
"windows",
"ai-agent"
],
"homepage": "https://github.com/agentkernel/openclaw-desktop",
"author": "wurongzhao@AgentKernel",
"repository": {
"type": "git",
"url": "https://github.com/agentkernel/openclaw-desktop.git"
},
"bugs": {
"url": "https://github.com/agentkernel/openclaw-desktop/issues"
},
"license": "GPL-3.0",
"engines": {
"node": ">=22.12.0"
}
}