cc-libs/tools/mcp-bridge/package.json

36 lines
1.0 KiB
JSON

{
"name": "mcp-bridge",
"version": "0.3.0",
"private": true,
"type": "module",
"scripts": {
"build": "tsc",
"eslint": "eslint . --cache --cache-location node_modules/.cache/eslint/",
"clean": "rm -rf node_modules/.cache/tsc node_modules/.cache/eslint",
"check": "npm run eslint",
"test:all": "npm run check && npm run build && npm run test",
"test:ci": "npm run test:all && npm run test:integration",
"dev": "tsx watch src/index.ts",
"start": "npm run build && node dist/src/index.js",
"test": "tsx --test test/*.test.ts",
"test:integration": "tsx --test --test-concurrency=1 test-integration/*.test.ts"
},
"dependencies": {
"ws": "^8.17.1"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/node": "^20.14.10",
"@types/ws": "^8.5.10",
"eslint": "^10.4.1",
"globals": "^17.6.0",
"tsx": "^4.16.2",
"typescript": "^5.5.3",
"typescript-eslint": "^8.61.0"
},
"allowScripts": {
"esbuild@0.28.0": true,
"fsevents@2.3.3": true
}
}