46 lines
1.1 KiB
JSON
46 lines
1.1 KiB
JSON
{
|
|
"name": "openmcp-test-backend",
|
|
"version": "0.0.1",
|
|
"description": "",
|
|
"main": "dist/index.js",
|
|
"types": "dist/index.d.ts",
|
|
"scripts": {
|
|
"serve": "ts-node src/main.ts",
|
|
"build": "tsc",
|
|
"build:watch": "tsc --watch",
|
|
"start": "node dist/main.js",
|
|
"start:prod": "NODE_ENV=production node dist/main.js",
|
|
"debug": "node --inspect -r ts-node/register 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",
|
|
"ts-node": "^10.9.2",
|
|
"typescript": "^5.6.3"
|
|
},
|
|
"dependencies": {
|
|
"@modelcontextprotocol/sdk": "^1.8.0",
|
|
"body-parser": "^1.20.3",
|
|
"chalk": "^5.4.1",
|
|
"cors": "^2.8.5",
|
|
"debug": "^4.4.0",
|
|
"express": "^4.21.1",
|
|
"morgan": "^1.10.0",
|
|
"openai": "^4.91.1",
|
|
"pako": "^2.1.0",
|
|
"pino": "^9.6.0",
|
|
"pino-pretty": "^13.0.0",
|
|
"ws": "^8.18.1"
|
|
}
|
|
}
|