-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 2.11 KB
/
Copy pathpackage.json
File metadata and controls
90 lines (90 loc) · 2.11 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
80
81
82
83
84
85
86
87
88
89
90
{
"name": "androidbuilder-mcp",
"version": "1.2.0",
"description": "MCP server for safe MIT App Inventor and AndroidBuilder IDE automation and offline AIA/AIX inspection",
"repository": {
"type": "git",
"url": "https://github.com/williamcorrea23/androidbuilder-mcp.git"
},
"bugs": {
"url": "https://github.com/williamcorrea23/androidbuilder-mcp/issues"
},
"homepage": "https://github.com/williamcorrea23/androidbuilder-mcp#readme",
"main": "dist/index.js",
"type": "module",
"bin": {
"androidbuilder-mcp": "./dist/index.js"
},
"files": [
<<<<<<< Updated upstream
"dist/",
"docs/",
"skills/",
".codex-plugin/",
".mcp.json",
=======
"dist",
"skills",
>>>>>>> Stashed changes
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "tsc --watch",
<<<<<<< Updated upstream
"prepack": "npm run build",
"test": "npm run build && node tests/mcp-smoke.mjs && node tests/package-validate.mjs",
"test:mcp": "npm run build && node tests/mcp-smoke.mjs",
"test:package": "node tests/package-validate.mjs"
=======
"test": "vitest run",
"test:watch": "vitest",
"prepack": "npm run build"
>>>>>>> Stashed changes
},
"keywords": [
"mcp",
"model-context-protocol",
"androidbuilder",
"app-inventor",
"niotron",
"kodular",
"blockly",
"gwt",
"chrome-devtools-protocol",
"puppeteer",
"llm",
"ai-tools"
],
"engines": {
"node": ">=22.12"
},
"license": "MIT",
"dependencies": {
<<<<<<< Updated upstream
"@modelcontextprotocol/sdk": "^1.29.0",
"puppeteer-core": "^25.3.0",
"zod": "^3.25.76"
},
"devDependencies": {
"@types/node": "^24.0.0",
"typescript": "^5.9.3"
=======
"@modelcontextprotocol/sdk": "^1.5.0",
"puppeteer-core": "^22.6.0",
"saxes": "^6.0.0",
"yauzl": "^3.4.0",
"zod": "^3.22.4"
},
"devDependencies": {
"@types/node": "^20.11.24",
"@types/yauzl": "^3.4.0",
"@types/yazl": "^3.3.1",
"typescript": "^5.3.3",
"vitest": "^4.1.10",
"yazl": "^3.3.1"
>>>>>>> Stashed changes
}
}