-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 961 Bytes
/
package.json
File metadata and controls
44 lines (44 loc) · 961 Bytes
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
{
"name": "droidpilot-cli",
"version": "1.0.0",
"description": "Android 设备自动化控制命令行工具 - AI 驱动",
"main": "dist/index.js",
"bin": {
"droidpilot": "./cli.js"
},
"scripts": {
"build": "vite build",
"start": "node cli.js",
"dev": "npm run build && npm run start"
},
"keywords": [
"android",
"adb",
"automation",
"ai",
"cli",
"langchain"
],
"author": "",
"license": "MIT",
"dependencies": {
"@langchain/core": "^1.1.28",
"@langchain/openai": "^1.2.10",
"langchain": "^1.2.27",
"sharp": "^0.33.5",
"zod": "^3.25.67"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^29.0.0",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^16.0.3",
"@types/node": "^24.0.14",
"@types/sharp": "^0.32.0",
"ts-node": "^10.9.2",
"typescript": "~5.8.3",
"vite": "^7.3.1"
},
"engines": {
"node": ">=20.0.0"
}
}