package.json•2.68 kB
{
"name": "@aaronsb/targetprocess-mcp",
"version": "0.10.0",
"description": "Model Context Protocol server for Targetprocess project management platform",
"author": "Aaron Bockelie <aaronsb@gmail.com> (https://github.com/aaronsb)",
"repository": {
"type": "git",
"url": "https://github.com/aaronsb/apptio-target-process-mcp.git"
},
"license": "MIT",
"keywords": [
"targetprocess",
"mcp",
"model-context-protocol",
"ai-assistant",
"claude",
"agile",
"project-management",
"apptio"
],
"private": false,
"type": "module",
"main": "./build/index.js",
"exports": {
".": "./build/index.js"
},
"bin": {
"targetprocess-mcp": "./build/index.js"
},
"files": [
"build",
"README.md",
"LICENSE"
],
"scripts": {
"build": "npm run check:secrets > /tmp/apptio-mcp-secrets.log 2>&1 && echo '✓ Secrets check passed' || (echo '✗ Secrets check failed - see /tmp/apptio-mcp-secrets.log' && cat /tmp/apptio-mcp-secrets.log && exit 1); tsc > /tmp/apptio-mcp-tsc.log 2>&1 && echo '✓ TypeScript compiled' || (echo '✗ TypeScript compilation failed - see /tmp/apptio-mcp-tsc.log' && tail -20 /tmp/apptio-mcp-tsc.log && exit 1); chmod 755 build/index.js && echo '✓ Build complete!'",
"prepare": "[ \"$NODE_ENV\" != \"production\" ] && npm run build || exit 0",
"watch": "tsc --watch",
"inspector": "npx @modelcontextprotocol/inspector build/index.js",
"lint": "eslint 'src/**/*.ts' > /tmp/apptio-mcp-lint.log 2>&1 && echo '✓ Linting passed' || (echo '✗ Linting failed - see /tmp/apptio-mcp-lint.log' && cat /tmp/apptio-mcp-lint.log && exit 1)",
"test": "NODE_OPTIONS=\"--experimental-vm-modules\" jest",
"check:secrets": "node scripts/check-secrets.cjs",
"prebuild": "rm -rf build && npm run lint",
"precommit": "npm run check:secrets && npm run lint",
"prepublishOnly": "npm run test && npm run build",
"start": "node build/index.js",
"mcp": "node build/index.js"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.17.2",
"axios": "^1.11.0",
"dotenv": "^17.2.1",
"node-fetch": "^3.3.2",
"zod": "^4.0.17"
},
"devDependencies": {
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@types/jest": "^30.0.0",
"@types/node": "^24.2.1",
"@typescript-eslint/eslint-plugin": "^8.39.0",
"@typescript-eslint/parser": "^8.38.0",
"conventional-changelog-conventionalcommits": "^9.1.0",
"eslint": "^9.33.0",
"glob": "^11.0.3",
"jest": "^30.0.5",
"rimraf": "^6.0.1",
"semantic-release": "^22.0.12",
"ts-jest": "^29.4.1",
"typescript": "^5.8.3"
}
}