package.json•1.57 kB
{
"name": "@airjesus17/mcp-server-spinnaker",
"version": "1.5.1",
"description": "MCP server implementation for Spinnaker integrations",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
"files": [
"dist",
"README.md",
"LICENSE"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"start": "node --experimental-specifier-resolution=node dist/index.js",
"build": "tsc",
"dev": "yarn build && yarn start",
"clean": "rm -rf dist",
"prepublishOnly": "yarn clean && yarn build",
"prepare": "yarn build",
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js",
"version": "git add -A src",
"postversion": "git push && git push --tags"
},
"keywords": [
"mcp",
"spinnaker",
"deployment",
"pipeline",
"automation"
],
"author": "Dion Hagan",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/dion-hagan/mcp-server-spinnaker.git"
},
"bugs": {
"url": "https://github.com/dion-hagan/mcp-server-spinnaker/issues"
},
"homepage": "https://github.com/dion-hagan/mcp-server-spinnaker#readme",
"dependencies": {
"express": "^4.18.2",
"ws": "^8.16.0",
"zod": "^3.22.4"
},
"devDependencies": {
"@jest/globals": "^29.7.0",
"@types/express": "^4.17.21",
"@types/jest": "^29.5.14",
"@types/node": "^22.10.1",
"@types/ws": "^8.5.13",
"jest": "^29.7.0",
"ts-jest": "^29.2.5",
"typescript": "^5.7.2"
},
"engines": {
"node": ">=16"
}
}