forked from KunAgent/Kun
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
115 lines (115 loc) · 4.81 KB
/
Copy pathpackage.json
File metadata and controls
115 lines (115 loc) · 4.81 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
{
"name": "kun-gui",
"productName": "Kun",
"version": "0.1.0",
"description": "Electron workbench for the Kun runtime (HTTP/SSE)",
"main": "./out/main/index.js",
"type": "module",
"scripts": {
"dev": "npm run build:kun && electron-vite dev",
"build": "npm run build:kun && electron-vite build",
"build:kun": "node ./scripts/ensure-kun-install.cjs && npm --prefix kun run build",
"lint": "eslint .",
"test": "vitest run",
"test:watch": "vitest",
"dist": "npm run build && npx --yes electron-builder@26.8.1 --config electron-builder.config.cjs --publish never",
"dist:mac": "rm -f dist/Kun-*-mac-* dist/DeepSeek-GUI-*-mac-* dist/latest-mac.yml && npm run build && npm run dist:mac:x64:dmg && npm run dist:mac:x64:zip && npm run dist:mac:arm64:dmg && npm run dist:mac:arm64:zip && node ./scripts/generate-mac-latest.cjs dist",
"dist:mac:signed": "rm -f dist/Kun-*-mac-* dist/DeepSeek-GUI-*-mac-* dist/latest-mac.yml && MAC_SIGN=1 npm run dist:mac:x64 && MAC_SIGN=1 npm run dist:mac:arm64 && node ./scripts/generate-mac-latest.cjs dist",
"dist:mac:arm64": "npm run build && npm run dist:mac:arm64:dmg && npm run dist:mac:arm64:zip",
"dist:mac:x64": "npm run build && npm run dist:mac:x64:dmg && npm run dist:mac:x64:zip",
"dist:mac:arm64:dmg": "npx --yes electron-builder@26.8.1 --config electron-builder.config.cjs --publish never --mac dmg --arm64",
"dist:mac:x64:dmg": "npx --yes electron-builder@26.8.1 --config electron-builder.config.cjs --publish never --mac dmg --x64",
"dist:mac:arm64:zip": "node ./scripts/zip-mac-app.cjs arm64",
"dist:mac:x64:zip": "node ./scripts/zip-mac-app.cjs x64",
"dist:win": "npm run dist -- --win nsis --x64",
"dist:linux": "npm run dist -- --linux AppImage --x64",
"release:all": "bash ./scripts/release-mac.sh",
"release:mac": "bash ./scripts/release-mac.sh",
"release:win": "powershell -NoProfile -ExecutionPolicy Bypass -File ./scripts/release-win.ps1",
"r2:upload": "node ./scripts/publish-r2.mjs upload",
"r2:promote": "node ./scripts/publish-r2.mjs promote",
"postinstall": "node ./scripts/postinstall.cjs",
"verify:apple": "node ./scripts/verify-apple-signing.cjs",
"preview": "electron-vite preview",
"typecheck": "tsc --noEmit -p tsconfig.web.json && tsc --noEmit -p tsconfig.node.json",
"prepare:whisper": "node ./scripts/prepare-whisper-runner.cjs",
"mac:unquarantine": "bash ./scripts/mac-unquarantine.sh"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.1049.0",
"@codemirror/commands": "^6.10.3",
"@codemirror/lang-markdown": "^6.5.0",
"@codemirror/language": "^6.12.3",
"@codemirror/language-data": "^6.5.2",
"@codemirror/merge": "^6.12.2",
"@codemirror/state": "^6.6.0",
"@codemirror/view": "^6.43.0",
"@computer-use/nut-js": "^4.2.0",
"@floating-ui/dom": "^1.7.6",
"@larksuiteoapi/node-sdk": "^1.64.0",
"@modelcontextprotocol/sdk": "^1.29.0",
"@tencent-weixin/openclaw-weixin": "2.4.3",
"@tiptap/core": "^3.26.0",
"@tiptap/extension-image": "^3.26.0",
"@tiptap/extension-list": "^3.26.0",
"@tiptap/extension-table": "^3.26.0",
"@tiptap/markdown": "^3.26.0",
"@tiptap/pm": "^3.26.0",
"@tiptap/react": "^3.26.0",
"@tiptap/starter-kit": "^3.26.0",
"@xterm/addon-fit": "^0.11.0",
"@xterm/addon-web-links": "^0.12.0",
"@xterm/xterm": "^6.0.0",
"@xyflow/react": "^12.11.0",
"better-sqlite3": "^12.10.0",
"electron-store": "^10.1.0",
"electron-updater": "^6.8.3",
"html-to-docx": "^1.8.0",
"i18next": "^25.4.2",
"jimp": "^1.6.1",
"lucide-react": "^0.544.0",
"node-pty": "^1.1.0",
"openclaw": "file:vendor/openclaw-shim",
"pdfjs-dist": "^5.4.394",
"proxy-agent": "^8.0.2",
"qrcode.react": "^4.2.0",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-i18next": "^15.7.4",
"react-markdown": "^10.1.0",
"rehype-harden": "^1.1.8",
"rehype-raw": "^7.0.0",
"remark-gfm": "^4.0.1",
"shiki": "^3.23.0",
"streamdown": "^2.5.0",
"zod": "^4.4.3",
"zustand": "^5.0.3"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/better-sqlite3": "^7.6.13",
"@types/html-to-docx": "^1.8.1",
"@types/react": "^19.0.10",
"@types/react-dom": "^19.0.4",
"@vitejs/plugin-react": "^4.3.4",
"autoprefixer": "^10.4.21",
"electron": "^34.2.0",
"electron-vite": "^3.1.0",
"eslint": "^10.4.0",
"eslint-plugin-react-hooks": "^7.1.1",
"globals": "^17.6.0",
"postcss": "^8.5.3",
"tailwindcss": "^3.4.17",
"typescript": "^5.8.2",
"typescript-eslint": "^8.59.4",
"vite": "^6.2.0",
"vitest": "^4.1.7"
},
"author": "Kun Contributors",
"license": "PolyForm-Noncommercial-1.0.0",
"homepage": "https://github.com/KunAgent/Kun",
"repository": {
"type": "git",
"url": "https://github.com/KunAgent/Kun.git"
}
}