core/mcp/package.json
2025-06-25 21:20:48 +05:30

35 lines
695 B
JSON

{
"name": "@redplanethq/core-mcp",
"version": "0.1.3",
"type": "module",
"main": "dist/index.js",
"bin": {
"core-mcp": "dist/index.js"
},
"publishConfig": {
"access": "public"
},
"files": [
"dist"
],
"scripts": {
"build": "tsc && shx chmod +x dist/index.js",
"prepare": "npm run build",
"watch": "tsc --watch"
},
"dependencies": {
"@modelcontextprotocol/sdk": "1.0.1",
"@types/node": "^22.14.1",
"@types/uuid": "^10.0.0",
"axios": "^1.8.4",
"dotenv": "^16.5.0",
"uuid": "^11.1.0",
"zod": "^3.24.3",
"zod-to-json-schema": "^3.24.5"
},
"devDependencies": {
"shx": "^0.3.4",
"typescript": "^5.8.3"
}
}