-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.25 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 2.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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "@gbox.ai/mcp-server",
"version": "0.1.17",
"description": "MCP server exposing Gbox Android and Linux control tools via Model Context Protocol",
"homepage": "https://gbox.ai",
"author": "Gbox Team",
"license": "MIT",
"type": "module",
"main": "dist/index.js",
"bin": {
"@gbox.ai/mcp-server": "dist/index.js"
},
"scripts": {
"build": "tsup",
"start": "node dist/index.js",
"inspect": "npx @modelcontextprotocol/inspector@0.16.7 tsx src/index.ts",
"inspect:android": "npx @modelcontextprotocol/inspector@0.16.7 tsx src/index.ts -- --android",
"inspect:linux": "npx @modelcontextprotocol/inspector@0.16.7 tsx src/index.ts -- --linux",
"inspect:browser": "npx @modelcontextprotocol/inspector@0.16.7 tsx src/index.ts -- --browser",
"dev": "tsx src/index.ts",
"md2ts": "bin/md2ts.sh",
"lint": "eslint src/**/*.ts",
"format": "prettier --write src/**/*.ts",
"typecheck": "tsc --noEmit",
"prepublishOnly": "pnpm build",
"prepack": "pnpm build"
},
"keywords": [
"mcp",
"modelcontextprotocol",
"gbox",
"ai",
"android",
"linux",
"browser",
"control"
],
"repository": {
"type": "git",
"url": "git+https://github.com/babelcloud/gbox-mcp-server.git"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.20.0",
"axios": "^1.12.2",
"dotenv": "^17.2.3",
"express": "^5.1.0",
"gbox-sdk": "^0.43.0",
"jose": "^6.1.0",
"zod": "^3.25.76"
},
"devDependencies": {
"@eslint/js": "^9.37.0",
"@types/express": "^5.0.3",
"@types/node": "^24.7.2",
"eslint": "^9.37.0",
"eslint-plugin-prettier": "^5.5.4",
"eslint-plugin-unused-imports": "^4.2.0",
"globals": "^16.4.0",
"prettier": "^3.6.2",
"tsup": "^8.5.0",
"tsx": "^4.20.6",
"typescript": "^5.9.3",
"typescript-eslint": "^8.46.1"
},
"engines": {
"node": "^18.17.0 || ^20.3.0 || >=21.0.0"
},
"files": [
"dist/**/*",
"README.md",
"LICENSE",
"package.json"
],
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"packageManager": "pnpm@10.10.0+sha512.d615db246fe70f25dcfea6d8d73dee782ce23e2245e3c4f6f888249fb568149318637dca73c2c5c8ef2a4ca0d5657fb9567188bfab47f566d1ee6ce987815c39"
}