-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 2.61 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 2.61 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "agents-assemble-sharp-mcp",
"version": "0.1.0",
"private": true,
"description": "SHARP-on-MCP compliant healthcare MCP server (synthetic data only) for the Agents Assemble hackathon.",
"license": "MIT",
"type": "module",
"engines": {
"node": ">=18.18"
},
"scripts": {
"dev": "tsx watch src/index.ts",
"start:mcp-http": "node dist/index-mcp-http.js",
"build": "node scripts/run-env-cmd.mjs prisma generate && tsc -p tsconfig.json",
"db:generate": "node scripts/prisma-generate.mjs",
"db:push": "node scripts/run-env-cmd.mjs prisma db push",
"db:migrate": "node scripts/run-env-cmd.mjs prisma migrate dev",
"db:migrate:deploy": "node scripts/run-env-cmd.mjs prisma migrate deploy",
"db:seed": "node scripts/run-env-cmd.mjs npx tsx prisma/seed.ts",
"db:seed-platform": "node scripts/run-env-cmd.mjs npx tsx prisma/seedPlatform.ts",
"db:train-bank": "node scripts/run-env-cmd.mjs npx tsx prisma/seedQuestionBank.ts",
"train:rag-bank": "npm run db:train-bank",
"setup:all": "node scripts/setup-all.mjs",
"demo": "tsx demo/run_demo.ts",
"integration": "npm run build && tsx demo/mcp_integration.ts",
"train:diabetes": "tsx src/training/trainDiabetes.ts",
"train:tb": "tsx src/training/trainTuberculosis.ts",
"train:tb2-ml": "python ml/scripts/train_tuberculosis_tb2_sklearn.py",
"train:imaging:setup": "pip install -r ml/requirements-imaging.txt",
"train:imaging:download": "python ml/scripts/download_imaging_datasets.py",
"train:imaging": "python ml/scripts/train_imaging_classifier.py --skip brain-tumor",
"train:imaging:all": "npm run train:imaging:download && npm run train:imaging",
"lint": "eslint .",
"healer": "tsx src/healer/cli.ts",
"dev:heal": "tsx src/healer/cli.ts -- npm run dev",
"dev:plan": "tsx src/healer/cli.ts --plan-only -- npm run dev",
"smoke:health": "node scripts/smoke-http-health.mjs"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.29.0",
"@prisma/client": "6.18.0",
"@xenova/transformers": "^2.17.2",
"bcryptjs": "^3.0.3",
"docker": "^1.0.0",
"dotenv": "^17.4.2",
"google-auth-library": "^10.6.2",
"jsonwebtoken": "^9.0.3",
"otplib": "^13.4.0",
"pdf-parse": "^2.4.5",
"qrcode": "^1.5.4",
"xlsx": "^0.18.5",
"zod": "^3.25.0"
},
"devDependencies": {
"@eslint/js": "^9.0.0",
"@types/bcryptjs": "^2.4.6",
"@types/jsonwebtoken": "^9.0.10",
"@types/node": "^22.0.0",
"@types/qrcode": "^1.5.6",
"eslint": "^9.0.0",
"prisma": "6.18.0",
"tsx": "^4.0.0",
"typescript": "^5.6.0",
"typescript-eslint": "^8.0.0"
}
}