Files
mcpctl/src/mcplocal/package.json

28 lines
658 B
JSON
Raw Normal View History

2026-02-21 03:10:39 +00:00
{
"name": "@mcpctl/mcplocal",
"version": "0.0.1",
2026-02-21 03:10:39 +00:00
"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",
"test:smoke": "vitest run --config vitest.smoke.config.ts"
2026-02-21 03:10:39 +00:00
},
"dependencies": {
"@fastify/cors": "^10.0.0",
"@mcpctl/shared": "workspace:*",
"@modelcontextprotocol/sdk": "^1.0.0",
"fastify": "^5.0.0",
"yaml": "^2.8.2"
},
"devDependencies": {
"@types/node": "^25.3.0"
2026-02-21 03:10:39 +00:00
}
}