forked from xue160709/AgentOS
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 2.02 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 2.02 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
{
"name": "agentos",
"productName": "AgentOS",
"version": "0.1.8",
"description": "面向本地项目与长期任务的桌面 Agent 工作台",
"author": "xuezhirong <xue160709@gmail.com> (https://github.com/xue160709)",
"homepage": "https://github.com/xue160709/AgentOS",
"bugs": {
"url": "https://github.com/xue160709/AgentOS/issues"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/xue160709/AgentOS.git"
},
"type": "module",
"main": "dist-electron/main.js",
"scripts": {
"dev": "npm run build:speech-cli && vite",
"build:speech-cli": "node scripts/build-speech-cli.mjs",
"typecheck": "tsc",
"test:electron": "node --test electron/*.test.mjs",
"test:home-plugin": "node .agents/skills/a2ui-project-home-panel/scripts/validate_home_plugin.js --allow-missing",
"build": "npm run build:speech-cli && tsc && vite build && electron-builder --config electron-builder.config.cjs",
"build:icons:win": "node scripts/generate-windows-icon.mjs",
"build:local": "npm run build:speech-cli && tsc && vite build && electron-builder --config electron-builder.config.cjs --publish never",
"release": "npm run build:speech-cli && tsc && vite build && electron-builder --config electron-builder.config.cjs --publish always",
"preview": "vite preview"
},
"devDependencies": {
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^4.7.0",
"electron": "^30.0.1",
"electron-builder": "^24.13.3",
"typescript": "^5.2.2",
"vite": "^5.1.6",
"vite-plugin-electron": "^0.28.6",
"vite-plugin-electron-renderer": "^0.14.5"
},
"dependencies": {
"@a2ui/react": "^0.10.0",
"@a2ui/web_core": "^0.10.0",
"@anthropic-ai/claude-agent-sdk": "^0.3.142",
"dompurify": "^3.4.3",
"electron-updater": "^6.6.2",
"katex": "^0.17.0",
"marked": "^18.0.3",
"marked-katex-extension": "^5.1.9",
"mermaid": "^11.15.0",
"react": "^19.2.6",
"react-dom": "^19.2.6",
"zod": "^4.4.3"
}
}