-
Notifications
You must be signed in to change notification settings - Fork 50
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 1.07 KB
/
Copy pathpackage.json
File metadata and controls
35 lines (35 loc) · 1.07 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
{
"name": "blockbench-mcp",
"version": "1.6.1",
"description": "Blockbench MCP server plugin",
"keywords": [
"Blockbench",
"MCP"
],
"license": "GPL-3.0-only",
"author": "Jason J. Gardner",
"type": "module",
"main": "dist/mcp.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"prompts:build": "bun run ./build/generate-manifest.ts",
"dev": "bun run prompts:build && bun run ./build --sourcemap",
"dev:watch": "bun run prompts:build && bun run dev --watch",
"build": "bun run prompts:build && bun run ./build --minify",
"docs:build": "bun run ./build/docs.ts",
"docs:serve": "bun run docs/index.html",
"docs": "bun run prompts:build && bun run docs:build && bun run docs:serve",
"inspect": "bunx @modelcontextprotocol/inspector"
},
"dependencies": {
"zod": "^3.25.76",
"@modelcontextprotocol/sdk": "^1.25.3"
},
"devDependencies": {
"@types/bun": "^1.3.8",
"blockbench-types": "^5.0.6",
"tinycolor2": "^1.6.0",
"typescript": "^5.9.3",
"zod-to-json-schema": "^3.25.1"
}
}