package.json•1.4 kB
{
"name": "npm-run-mcp-server",
"version": "0.2.9",
"description": "An MCP server that exposes package.json scripts as tools for agents.",
"bin": {
"npm-run-mcp-server": "dist/index.js"
},
"type": "module",
"exports": {
".": "./dist/index.js"
},
"files": [
"dist/index.js",
"dist/index.d.ts"
],
"scripts": {
"build": "node scripts/build.cjs",
"start": "node ./dist/index.js",
"test": "node dist/index.js --list-scripts && echo 'MCP server test completed successfully'",
"prepublishOnly": "npm run build"
},
"engines": {
"node": ">=18.18.0"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.0.0",
"zod": "^3.23.8"
},
"bundledDependencies": [
"zod"
],
"devDependencies": {
"typescript": "^5.4.0",
"@types/node": "^20.14.9"
},
"keywords": [
"mcp",
"model-context-protocol",
"agent",
"npm",
"scripts",
"ai",
"claude",
"cursor",
"copilot",
"automation"
],
"author": "fstubner",
"repository": {
"type": "git",
"url": "git+https://github.com/fstubner/npm-run-mcp-server.git"
},
"bugs": {
"url": "https://github.com/fstubner/npm-run-mcp-server/issues"
},
"homepage": "https://github.com/fstubner/npm-run-mcp-server#readme",
"license": "MIT",
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
}
}