51 lines
1.2 KiB
JSON
51 lines
1.2 KiB
JSON
{
|
|
"name": "@openmcp/service",
|
|
"version": "0.0.1",
|
|
"description": "",
|
|
"main": "./dist/index.js",
|
|
"types": "./dist/index.d.ts",
|
|
"type": "commonjs",
|
|
"exports": {
|
|
".": "./src/index.ts"
|
|
},
|
|
"scripts": {
|
|
"serve": "ts-node-dev --respawn --transpile-only 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",
|
|
"esbuild": "^0.25.3",
|
|
"ts-node": "^10.9.2",
|
|
"ts-node-dev": "^2.0.0",
|
|
"typescript": "^5.6.3",
|
|
"webpack-cli": "^6.0.1",
|
|
"webpack-node-externals": "^3.0.0"
|
|
},
|
|
"dependencies": {
|
|
"@modelcontextprotocol/sdk": "^1.10.2",
|
|
"@seald-io/nedb": "^4.1.1",
|
|
"openai": "^4.96.0",
|
|
"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"
|
|
}
|
|
}
|