-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
24 lines (24 loc) · 842 Bytes
/
Copy pathpackage.json
File metadata and controls
24 lines (24 loc) · 842 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
{
"name": "mcfunction-debug-toolkit",
"private": true,
"version": "0.1.1",
"description": "Fabric debugging toolkit for Minecraft commands and datapacks, with optional MCP integration",
"type": "module",
"workspaces": [
"packages/protocol",
"packages/mcp-server"
],
"scripts": {
"build": "npm run build --workspaces --if-present",
"version:set": "npm version --no-git-tag-version",
"start:mcp": "npm run start -w @mc-command/mcp-server",
"test": "node scripts/smoke-mcp.mjs",
"test:install-datapack": "node scripts/install-syntax-test.mjs",
"test:real": "node scripts/verify-real-world-test.mjs",
"test:screenshot-single-flight": "node scripts/verify-screenshot-single-flight.mjs",
"typecheck": "npm run typecheck --workspaces --if-present"
},
"engines": {
"node": ">=18"
}
}