Files
mcpctl/src/local-proxy/package.json

21 lines
461 B
JSON
Raw Normal View History

2026-02-21 03:10:39 +00:00
{
"name": "@mcpctl/local-proxy",
"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": {
"@modelcontextprotocol/sdk": "^1.0.0",
"@mcpctl/shared": "workspace:*"
}
}