package.json•1.18 kB
{
"name": "@tmhr1850/backlog-mcp-server",
"version": "1.0.2",
"description": "Backlog APIへのアクセスを提供するMCPサーバー",
"main": "dist/server.js",
"type": "module",
"bin": {
"backlog-mcp-server": "dist/server.js"
},
"scripts": {
"build": "tsc",
"start": "node dist/server.js",
"test": "NODE_OPTIONS=--experimental-vm-modules jest",
"test:watch": "NODE_OPTIONS=--experimental-vm-modules jest --watch",
"test:coverage": "NODE_OPTIONS=--experimental-vm-modules jest --coverage"
},
"keywords": [
"backlog",
"mcp",
"api",
"server"
],
"author": "tomohiro1850",
"license": "MIT",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.6.0",
"dotenv": "^16.4.5",
"node-fetch": "^3.3.2",
"zod": "^3.22.4"
},
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/node": "^20.11.25",
"jest": "^29.7.0",
"ts-jest": "^29.1.2",
"typescript": "^5.4.2"
},
"engines": {
"node": ">=20.11.25"
},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tomohiro1850/backlog-mcp-server.git"
}
}