openmcp-client/service/package.json
2025-06-03 21:51:26 +08:00

51 lines
1.3 KiB
JSON

{
"name": "@openmcp/service",
"version": "0.0.1",
"description": "",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
"scripts": {
"serve": "tsx watch src/main.ts",
"build": "tsc",
"build:watch": "tsc --watch",
"postbuild": "node ./scripts/post-build.mjs",
"start": "node --experimental-specifier-resolution=node dist/main.js",
"start:prod": "NODE_ENV=production node --experimental-specifier-resolution=node dist/main.js",
"debug": "node --inspect --no-warnings=ExperimentalWarning -r tsx/esm src/main.ts",
"clean": "rm -rf dist",
"lint": "eslint src --ext .ts,.tsx",
"typecheck": "tsc --noEmit"
},
"author": "LSTM-Kirigaya",
"license": "MIT",
"devDependencies": {
"@types/cors": "^2.8.17",
"@types/debug": "^4.1.12",
"@types/express": "^5.0.0",
"@types/morgan": "^1.9.9",
"@types/node": "^22.7.5",
"@types/pako": "^2.0.3",
"@types/ws": "^8.18.0",
"esbuild": "^0.25.3",
"tsconfig-paths": "^4.2.0",
"tsx": "^4.19.4",
"typescript": "^5.8.3",
"webpack-cli": "^6.0.1",
"webpack-node-externals": "^3.0.0"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.12.1",
"@seald-io/nedb": "^4.1.1",
"open": "^10.1.2",
"axios": "^1.9.0",
"openai": "^5.0.1",
"pako": "^2.1.0",
"pino": "^9.6.0",
"pino-pretty": "^13.0.0",
"tesseract.js": "^6.0.1",
"uuid": "^11.1.0",
"ws": "^8.18.1"
}
}