package.json•1.46 kB
{
"name": "band-mcp-server",
"version": "1.0.8",
"description": "Model Context Protocol server for Band API integration",
"main": "dist/index.js",
"bin": {
"band-mcp-server": "bin/band-mcp-server"
},
"type": "module",
"scripts": {
"build": "tsc",
"dev": "tsx watch src/index.ts",
"test": "jest",
"test:watch": "jest --watch",
"lint": "eslint src/**/*.ts",
"lint:fix": "eslint src/**/*.ts --fix",
"prepublishOnly": "npm run build && npm test",
"release": "npm run build && npm test && npm publish --access public",
"release:snapshot": "npm run build && npm test && npm publish --tag snapshot --access public"
},
"keywords": [
"mcp",
"band",
"api",
"oauth2",
"typescript"
],
"author": "",
"license": "MIT",
"engines": {
"node": ">=23.11.0",
"npm": ">=10.9.2"
},
"dependencies": {
"@modelcontextprotocol/sdk": "1.3.0",
"axios": "1.12.2",
"dotenv": "17.2.2",
"express": "5.1.0",
"zod": "4.1.11"
},
"devDependencies": {
"@eslint/js": "^9.36.0",
"@types/express": "5.0.3",
"@types/jest": "30.0.0",
"@types/node": "24.6.0",
"@typescript-eslint/eslint-plugin": "8.44.1",
"@typescript-eslint/parser": "8.44.1",
"eslint": "^9.36.0",
"globals": "^16.4.0",
"jest": "30.1.3",
"jiti": "^2.6.0",
"ts-jest": "29.4.4",
"tsx": "4.20.6",
"typescript": "5.9.2",
"typescript-eslint": "^8.44.1"
}
}