package.json•1.89 kB
{
"name": "foundry-mcp-integration",
"version": "0.4.18",
"description": "MCP server that bridges Foundry VTT game data with Claude Desktop",
"private": true,
"workspaces": [
"packages/*",
"shared"
],
"scripts": {
"dev": "npm run dev --workspace=packages/mcp-server",
"build": "npm run build --workspaces --if-present",
"build:foundry": "npm run build --workspace=packages/foundry-module",
"build:server": "npm run build --workspace=packages/mcp-server",
"build:shared": "npm run build --workspace=shared",
"bundle:server": "npm run build:bundle --workspace=packages/mcp-server",
"build:release": "npm run build:shared && npm run build:server && npm run bundle:server && npm run build:foundry",
"installer:stage": "node installer/build-nsis.js --skip-download --skip-nsis",
"test": "npm run test --workspaces --if-present",
"lint": "eslint . --ext .ts,.js",
"lint:fix": "eslint . --ext .ts,.js --fix",
"format": "prettier --write \"**/*.{ts,js,json,md}\"",
"format:check": "prettier --check \"**/*.{ts,js,json,md}\"",
"clean": "npm run clean --workspaces --if-present && rm -rf node_modules",
"typecheck": "npm run typecheck --workspaces --if-present"
},
"devDependencies": {
"@types/node": "^20.0.0",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"eslint": "^8.0.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.0",
"prettier": "^3.0.0",
"typescript": "^5.0.0",
"vitest": "^3.2.4"
},
"engines": {
"node": ">=18.0.0",
"npm": ">=9.0.0"
},
"author": "Adam Dooley",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/adambdooley/foundry-vtt-mcp.git"
},
"keywords": [
"foundry-vtt",
"mcp",
"claude",
"ai",
"tabletop",
"rpg"
]
}