-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1009 Bytes
/
Copy pathpackage.json
File metadata and controls
39 lines (39 loc) · 1009 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
{
"name": "godot-remote-mcp-server",
"version": "1.0.0",
"private": true,
"engines": {
"node": "^22.12.0"
},
"scripts": {
"deploy": "wrangler deploy",
"dev": "wrangler dev",
"dev:inspect": "NODE_OPTIONS='--inspect' wrangler dev",
"format": "biome format --write",
"lint:fix": "biome lint --fix",
"start": "wrangler dev",
"cf-typegen": "wrangler types",
"test": "vitest",
"type-check": "tsc --noEmit"
},
"dependencies": {
"@mixmark-io/domino": "^2.2.0",
"@modelcontextprotocol/sdk": "^1.26.0",
"agents": "^0.5.1",
"minisearch": "^7.2.0",
"turndown": "^7.2.2",
"turndown-plugin-gfm": "^1.0.2",
"zod": "^4.3.6"
},
"devDependencies": {
"@biomejs/biome": "^2.4.4",
"@cloudflare/vitest-pool-workers": "^0.12.14",
"@types/node": "^22.10.1",
"@types/turndown": "^5.0.6",
"node-addon-api": "^8.5.0",
"node-gyp": "^12.2.0",
"typescript": "5.9.3",
"vitest": "^3.2.0",
"wrangler": "^4.67.0"
}
}