-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.78 KB
/
Copy pathpackage.json
File metadata and controls
73 lines (73 loc) · 2.78 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
{
"name": "AI-Flow",
"version": "1.0.0-beta",
"description": "AI-Flow",
"main": "./out/main/index.js",
"author": "M5Stack",
"homepage": "https://m5stack.com",
"scripts": {
"format": "prettier --write .",
"lint": "eslint --cache .",
"typecheck:node": "tsc --noEmit -p tsconfig.node.json --composite false",
"typecheck:web": "tsc --noEmit -p tsconfig.web.json --composite false",
"typecheck": "npm run typecheck:node && npm run typecheck:web",
"start": "electron-vite preview",
"dev": "electron-vite dev",
"build": "npm run typecheck && electron-vite build",
"postinstall": "electron-builder install-app-deps",
"build:unpack": "npm run build && node scripts/prepare-claude-binary.js darwin arm64 && electron-builder --dir",
"build:mac": "npm run build && node scripts/prepare-claude-binary.js darwin arm64 && electron-builder --mac --arm64",
"build:win": "npm run build && node scripts/prepare-claude-binary.js win32 x64 && electron-builder --win --x64",
"build:linux": "npm run build && node scripts/prepare-claude-binary.js linux x64 && electron-builder --linux --x64",
"icons:mac": "node scripts/round-mac-icon.mjs",
"icons:win": "node scripts/generate-win-icon.mjs"
},
"dependencies": {
"@anthropic-ai/claude-agent-sdk": "^0.3.146",
"@electron-toolkit/preload": "^3.0.2",
"@electron-toolkit/utils": "^4.0.0",
"@heroui/react": "^3.0.4",
"@heroui/styles": "^3.0.4",
"@monaco-editor/react": "^4.7.0",
"@tailwindcss/vite": "^4.3.0",
"@xterm/addon-fit": "^0.11.0",
"@xterm/xterm": "^6.0.0",
"axios": "^1.16.0",
"dmg-builder": "^26.8.1",
"esptool-js": "^0.6.0",
"react-icons": "^5.6.0",
"react-markdown": "^10.1.0",
"remark-gfm": "^4.0.1",
"tailwindcss": "^4.3.0",
"zustand": "^5.0.13"
},
"optionalDependencies": {
"@anthropic-ai/claude-agent-sdk-darwin-arm64": "0.3.146",
"@anthropic-ai/claude-agent-sdk-darwin-x64": "^0.3.146",
"@anthropic-ai/claude-agent-sdk-linux-x64": "0.3.146",
"@anthropic-ai/claude-agent-sdk-win32-x64": "^0.3.146"
},
"devDependencies": {
"@electron-toolkit/eslint-config-prettier": "^3.0.0",
"@electron-toolkit/eslint-config-ts": "^3.1.0",
"@electron-toolkit/tsconfig": "^2.0.0",
"@types/node": "^22.19.1",
"@types/react": "^19.2.7",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^5.1.1",
"electron": "^39.2.6",
"electron-builder": "^26.8.1",
"electron-vite": "^5.0.0",
"eslint": "^9.39.1",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-react-refresh": "^0.4.24",
"png-to-ico": "^3.0.1",
"prettier": "^3.7.4",
"react": "^19.2.1",
"react-dom": "^19.2.1",
"sharp": "^0.34.5",
"typescript": "^5.9.3",
"vite": "^7.2.6"
}
}