Files
mcpctl/src/mcpd/package.json

29 lines
652 B
JSON
Raw Normal View History

2026-02-21 03:10:39 +00:00
{
"name": "@mcpctl/mcpd",
"version": "0.1.0",
"private": true,
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"build": "tsc --build",
"clean": "rimraf dist",
"dev": "tsx watch src/index.ts",
"start": "node dist/index.js",
"test": "vitest",
"test:run": "vitest run"
},
"dependencies": {
"@fastify/cors": "^10.0.0",
"@fastify/helmet": "^12.0.0",
"@fastify/rate-limit": "^10.0.0",
"@mcpctl/db": "workspace:*",
2026-02-21 03:10:39 +00:00
"@mcpctl/shared": "workspace:*",
"fastify": "^5.0.0",
"zod": "^3.24.0"
},
"devDependencies": {
"@types/node": "^25.3.0"
2026-02-21 03:10:39 +00:00
}
}