-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.75 KB
/
Copy pathpackage.json
File metadata and controls
65 lines (65 loc) · 1.75 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
{
"name": "pony-office",
"version": "0.1.0",
"description": "小马办公室:多 Agent 协作桌面应用(Marvis 式演示产品)",
"main": "out/main/index.js",
"private": true,
"scripts": {
"dev": "electron-vite dev",
"build": "electron-vite build",
"start": "electron-vite preview",
"typecheck": "tsc --noEmit -p tsconfig.node.json && tsc --noEmit -p tsconfig.web.json",
"make-demo": "node scripts/make-demo-xlsx.mjs",
"dist": "electron-vite build && electron-builder"
},
"dependencies": {
"@ai-sdk/mcp": "^1.0.46",
"@ai-sdk/openai-compatible": "^2.0.48",
"@modelcontextprotocol/sdk": "^1.29.0",
"@modelcontextprotocol/server-filesystem": "^2026.1.14",
"ai": "^6.0.199",
"dotenv": "^17.4.2",
"echarts": "^6.1.0",
"pixi.js": "^8.19.0",
"pptxgenjs": "^4.0.1",
"react": "^19.2.7",
"react-dom": "^19.2.7",
"react-icons": "^5.6.0",
"react-markdown": "^10.1.0",
"remark-gfm": "^4.0.1",
"sharp": "^0.35.1",
"xlsx": "^0.18.5",
"zod": "^4.4.3",
"zustand": "^5.0.14"
},
"devDependencies": {
"@types/node": "^25.9.2",
"@types/react": "^19.2.17",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^5.2.0",
"electron": "^42.4.0",
"electron-builder": "^26.15.2",
"electron-vite": "^5.0.0",
"typescript": "^6.0.3",
"vite": "^7.3.5"
},
"build": {
"appId": "com.demo.pony-office",
"productName": "小马办公室",
"artifactName": "pony-office-${version}.${ext}",
"files": [
"out/**",
"node_modules/**",
"package.json"
],
"asarUnpack": [
"node_modules/@modelcontextprotocol/server-filesystem/**"
],
"win": {
"target": [
"portable",
"nsis"
]
}
}
}