-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 2.19 KB
/
Copy pathpackage.json
File metadata and controls
65 lines (65 loc) · 2.19 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
{
"name": "proxy-smart-backend",
"displayName": "Proxy Smart Backend",
"version": "0.3.15-beta.202608142040.36af3ff76",
"type": "module",
"scripts": {
"test": "bun test --isolate",
"test:watch": "bun test --isolate --watch",
"dev": "bun run --watch --watch-path src src/index.ts",
"start": "bun run src/index.ts",
"mcp": "bun run src/mcp-server.ts",
"build": "tsc --noEmit && bun build src/index.ts --outdir dist --target node --external undici --external node-fetch",
"export-openapi": "mkdir -p dist && bun run src/export-openapi.ts && bun run scripts/sanitize-openapi.ts",
"typecheck": "tsc --noEmit",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"check": "bun run typecheck && bun run lint"
},
"dependencies": {
"@ai-sdk/openai": "^4.0.40",
"@elysiajs/cors": "^1.4.2",
"@elysiajs/eden": "^1.4.9",
"@elysiajs/openapi": "^1.4.15",
"@elysiajs/static": "^1.4.10",
"@keycloak/keycloak-admin-client": "26.6.4",
"@max-health-inc/consent-fhir": "^0.1.4",
"@max-health-inc/elysia-mcp": "workspace:*",
"@maxhealth.tech/mcp-http": "^0.5.0",
"@modelcontextprotocol/server": "^2.0.0",
"@opendataloader/pdf": "^2.5.0",
"@proxy-smart/app-store": "workspace:*",
"@proxy-smart/auth": "workspace:*",
"@sinclair/typebox": "^0.34.52",
"ai": "^7.0.62",
"cross-fetch": "^4.1.0",
"date-fns": "^4.4.0",
"elysia": "^1.4.29",
"hl7.fhir.uv.ips-generated": "../lib/hl7.fhir.uv.ips-generated.tgz",
"jsonwebtoken": "^9.0.3",
"jwks-rsa": "^4.1.0",
"kill-the-clipboard": "^1.1.0",
"node-fetch": "^3.3.2",
"node-forge": "^1.4.0",
"pg": "^8.23.0",
"resend": "^6.19.0",
"unifi-access": "^1.5.3",
"zod": "^4.4.3"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@socketsecurity/bun-security-scanner": "^1.1.2",
"@types/bun": "^1.3.14",
"@types/fhir": "^0.0.44",
"@types/jsonwebtoken": "^9.0.10",
"@types/node-fetch": "^2.6.13",
"@types/node-forge": "^1.3.14",
"@types/pg": "^8.21.0",
"bun-types": "^1.3.14",
"eslint": "^10.8.1",
"globals": "^17.10.0",
"typescript": "6.0.3",
"typescript-eslint": "^8.67.0"
},
"module": "src/index.js"
}