-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.25 KB
/
Copy pathpackage.json
File metadata and controls
50 lines (50 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
46
47
48
49
50
{
"name": "qb64pe-mcp-server",
"version": "2.0.1",
"description": "Model Context Protocol server for QB64PE development assistance",
"main": "build/index.js",
"scripts": {
"build": "tsc",
"start": "node build/index.js",
"dev": "tsc --watch",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"test:verbose": "jest --verbose",
"start:server": "node tools/dev-static-server.js",
"analyze:graphics": "node tests/integration/test-enhanced-graphics-analysis.js",
"server:health": "curl -s http://localhost:5173/health || echo 'Server not running'"
},
"keywords": [
"mcp",
"qb64pe",
"basic",
"compiler",
"wiki",
"development"
],
"author": "grymmjack",
"license": "MIT",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.0.0",
"@types/chokidar": "^1.7.5",
"axios": "^1.7.0",
"cheerio": "^1.0.0",
"chokidar": "^4.0.3",
"cors": "^2.8.5",
"express": "^5.1.0",
"mime": "^4.0.7",
"serve-index": "^1.9.1",
"zod": "^3.23.0"
},
"devDependencies": {
"@types/jest": "^29.0.0",
"@types/node": "^20.0.0",
"jest": "^29.0.0",
"ts-jest": "^29.0.0",
"typescript": "^5.0.0"
},
"engines": {
"node": ">=18.0.0"
}
}