forked from ketthub/clawUI
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.85 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.85 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
{
"name": "clawui",
"private": true,
"version": "0.1.0",
"main": "electron/main.cjs",
"type": "module",
"engines": {
"node": "22.22.0",
"npm": "10.9.4"
},
"packageManager": "npm@10.9.4",
"scripts": {
"dev": "vite",
"build": "vite build",
"desktop:build:web": "vite build",
"desktop:pack": "npm run desktop:build:web && electron-builder --dir",
"desktop:dist:mac": "npm run desktop:build:web && electron-builder --mac dmg zip --publish never",
"preview": "vite preview",
"check:runtime": "node scripts/check-runtime.mjs",
"check:rollup-linux": "node -e \"require.resolve('@rollup/rollup-linux-x64-gnu')\"",
"check:env": "npm run check:runtime && npm run check:rollup-linux",
"verify:ci": "npm ci && npm run check:env && npm run build",
"hooks:install": "git config core.hooksPath .githooks"
},
"dependencies": {
"@noble/ed25519": "^2.1.0",
"dompurify": "^3.0.11",
"katex": "^0.16.28",
"marked": "^12.0.2",
"marked-katex-extension": "^5.1.6",
"react": "^18.3.1",
"react-dom": "^18.3.1"
},
"devDependencies": {
"@types/dompurify": "^3.0.5",
"@types/react": "^18.3.11",
"@types/react-dom": "^18.3.1",
"@vitejs/plugin-react": "^4.3.1",
"autoprefixer": "^10.4.20",
"electron": "^40.2.1",
"electron-builder": "^26.7.0",
"postcss": "^8.4.45",
"tailwindcss": "^3.4.10",
"typescript": "^5.6.3",
"vite": "^5.4.8"
},
"build": {
"appId": "com.openclaw.para",
"productName": "ClawUI",
"artifactName": "${productName}-${version}-${arch}.${ext}",
"directories": {
"output": "desktop-dist"
},
"files": [
"dist/**/*",
"electron/**/*",
"package.json"
],
"mac": {
"category": "public.app-category.productivity",
"target": [
"dmg",
"zip"
],
"identity": null
}
}
}