-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.25 KB
/
Copy pathpackage.json
File metadata and controls
45 lines (45 loc) · 1.25 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
{
"name": "mobile-code-agent",
"version": "0.1.0",
"private": true,
"type": "module",
"description": "一个适合手机联网使用的 AI 写代码工具 / A mobile-friendly coding agent you can open on your phone to inspect, edit, run checks, and let AI write code.",
"bin": {
"code-agent": "./dist/index.js"
},
"engines": {
"node": ">=22"
},
"scripts": {
"build": "npm run build:server && npm run build:web",
"build:server": "tsc -p tsconfig.server.json",
"build:web": "vite build",
"cli": "tsx src/index.ts",
"dev": "tsx src/server.ts",
"dev:web": "vite",
"start": "node dist/server.js",
"test": "node --import tsx --test src/**/*.test.ts"
},
"dependencies": {
"@monaco-editor/react": "^4.7.0",
"commander": "^14.0.0",
"chokidar": "^4.0.3",
"dotenv": "^16.5.0",
"express": "^5.1.0",
"fast-glob": "^3.3.3",
"monaco-editor": "^0.54.0",
"react": "^19.1.1",
"react-dom": "^19.1.1",
"zod": "^3.25.67"
},
"devDependencies": {
"@types/express": "^5.0.3",
"@types/node": "^22.13.10",
"@types/react": "^19.1.16",
"@types/react-dom": "^19.1.9",
"@vitejs/plugin-react": "^5.0.4",
"tsx": "^4.20.5",
"typescript": "^5.8.2",
"vite": "^7.1.10"
}
}