-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.27 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.27 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
{
"name": "mobile-ai-controller",
"version": "1.0.0",
"description": "",
"main": "./src/index.js",
"scripts": {
"build": "tsc",
"start": "pnpm build && node ./dist/index.js",
"format": "prettier --write \"src/**/*.ts\"",
"format:check": "prettier --check \"src/**/*.ts\"",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/0xhijo/mobile-ai-controller.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"type": "module",
"bugs": {
"url": "https://github.com/0xhijo/mobile-ai-controller/issues"
},
"homepage": "https://github.com/0xhijo/mobile-ai-controller#readme",
"devDependencies": {
"@types/bun": "^1.3.4",
"@types/node": "^24.10.2",
"@types/pg": "^8.15.5",
"prettier": "^3.7.4",
"typescript": "^5.9.3"
},
"dependencies": {
"@inquirer/prompts": "^7.2.0",
"@langchain/core": "^1.1.4",
"@langchain/google-genai": "^2.0.4",
"@langchain/langgraph": "^1.0.4",
"@langchain/mcp-adapters": "^1.0.3",
"@langchain/openai": "^1.1.3",
"@types/adm-zip": "^0.5.7",
"adm-zip": "^0.5.16",
"axios": "^1.13.2",
"dotenv": "^17.2.3",
"langchain": "^1.1.5",
"pg": "^8.16.3",
"winston": "^3.19.0"
}
}