-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.82 KB
/
Copy pathpackage.json
File metadata and controls
59 lines (59 loc) · 1.82 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
{
"name": "roll20-dm-mcp",
"version": "2.0.3",
"description": "MCP servers for driving a Roll20 table — combat and map prep primitives, no browser",
"main": "dist/index-combat.js",
"scripts": {
"start": "node dist/index-combat.js",
"build": "tsc",
"prepare": "tsc",
"dev": "tsx watch src/index-combat.ts",
"serve": "tsx src/index-http.ts",
"serve:watch": "tsx watch src/index-http.ts",
"test": "vitest run",
"test:watch": "vitest",
"coverage": "vitest run --coverage",
"lint": "eslint src/**/*.ts test/**/*.ts"
},
"keywords": [],
"author": "",
"license": "MIT",
"//files": [
"Consumers install this from git, so `prepare` above builds dist/ in the clone.",
"That build is only USEFUL if dist/ also gets packed — and with no `files` field npm",
"falls back to .gitignore, which lists dist/. The prepare script would have run, the",
"output would have been discarded, and the consumer would get no server entry at all.",
"Everything listed here is consumed by the gem: dist/ (supervised spawn), src/ (its",
"esbuild bundle:server step), skills/ + mod-scripts/ + LICENSE (electron-builder",
"extraResources). Nothing else is."
],
"files": [
"dist",
"src",
"skills",
"mod-scripts",
"LICENSE",
"NOTICE"
],
"type": "module",
"dependencies": {
"@anthropic-ai/sdk": "^0.98.0",
"@modelcontextprotocol/sdk": "^1.29.0",
"dotenv": "^17.4.2",
"firebase": "^12.14.0",
"sharp": "^0.34.5",
"zod": "^4.4.3"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/node": "^25.9.1",
"@types/sharp": "^0.31.1",
"@vitest/coverage-v8": "^3.2.4",
"esbuild": "^0.28.0",
"eslint": "^10.5.0",
"tsx": "^4.22.3",
"typescript": "^6.0.3",
"typescript-eslint": "^8.61.1",
"vitest": "^3.2.4"
}
}