26 lines
595 B
JSON
26 lines
595 B
JSON
|
|
{
|
||
|
|
"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": "^5.0.0",
|
||
|
|
"@fastify/cors": "^10.0.0",
|
||
|
|
"@fastify/helmet": "^12.0.0",
|
||
|
|
"@fastify/rate-limit": "^10.0.0",
|
||
|
|
"zod": "^3.24.0",
|
||
|
|
"@mcpctl/shared": "workspace:*",
|
||
|
|
"@mcpctl/db": "workspace:*"
|
||
|
|
}
|
||
|
|
}
|