package.json•2.4 kB
{
"name": "dice-rolling-mcp",
"version": "1.0.0",
"description": "A TypeScript-based Model Context Protocol (MCP) server providing comprehensive dice rolling capabilities with advanced gaming mechanics",
"main": "dist/index.js",
"bin": {
"dice-rolling-mcp": "dist/index.js"
},
"scripts": {
"build": "next build",
"start": "next start",
"dev": "next dev",
"test": "jest",
"test:coverage": "jest --coverage",
"lint": "eslint src/**/*.ts __tests__/**/*.ts app/**/*.ts",
"lint:fix": "eslint src/**/*.ts __tests__/**/*.ts app/**/*.ts --fix",
"format": "prettier --write src/**/*.ts __tests__/**/*.ts app/**/*.ts",
"format:check": "prettier --check src/**/*.ts __tests__/**/*.ts app/**/*.ts",
"prepare": "husky",
"pre-commit": "lint-staged",
"build:mcp": "tsc",
"start:mcp": "node dist/index.js",
"dev:mcp": "tsx watch src/index.ts"
},
"engines": {
"node": ">=18.0.0"
},
"keywords": [
"dice",
"mcp",
"model-context-protocol",
"tabletop",
"gaming",
"rpg",
"random",
"typescript",
"claude",
"ai-assistant",
"dnd",
"pathfinder",
"fate",
"savage-worlds",
"cryptographically-secure"
],
"author": "Jim McQuillan <jim@jimmcq.com>",
"license": "ISC",
"repository": {
"type": "git",
"url": "git+https://github.com/jimmcq/dice-rolling-mcp.git"
},
"bugs": {
"url": "https://github.com/jimmcq/dice-rolling-mcp/issues"
},
"homepage": "https://github.com/jimmcq/dice-rolling-mcp#readme",
"type": "module",
"devDependencies": {
"@eslint/js": "^9.35.0",
"@types/jest": "^30.0.0",
"@types/node": "^24.3.2",
"@types/react": "^19",
"@typescript-eslint/eslint-plugin": "^8.44.0",
"@typescript-eslint/parser": "^8.43.0",
"eslint": "^9.35.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.4",
"husky": "^9.1.7",
"jest": "^30.1.3",
"lint-staged": "^16.1.6",
"prettier": "^3.6.2",
"ts-jest": "^29.4.2",
"tsx": "^4.20.5",
"typescript": "^5.9.2"
},
"dependencies": {
"@modelcontextprotocol/sdk": "1.18.0",
"@vercel/mcp-adapter": "1.0.0",
"next": "15.5.3",
"react": "^19.1.1",
"react-dom": "^19.1.1",
"zod": "3.25.76"
},
"lint-staged": {
"*.{ts,js}": [
"eslint --fix",
"prettier --write",
"git add"
]
}
}