-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.39 KB
/
Copy pathpackage.json
File metadata and controls
41 lines (41 loc) · 1.39 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
{
"name": "featherless",
"version": "0.1.0",
"private": true,
"type": "module",
"description": "TypeScript SHARP-on-MCP-compliant FHIR R4 MCP server with MCP-UI clinical dashboards, on Cloudflare Workers",
"license": "MIT",
"engines": {
"node": ">=20"
},
"scripts": {
"dev": "wrangler dev",
"dev:orchestrator": "wrangler dev --config wrangler-orchestrator.jsonc",
"deploy": "wrangler deploy",
"deploy:orchestrator": "wrangler deploy --config wrangler-orchestrator.jsonc",
"typecheck": "tsc --noEmit",
"lint": "biome check src test orchestrator",
"format": "biome format --write src test orchestrator",
"test": "vitest run",
"test:watch": "vitest",
"test:integration": "INTEGRATION=1 vitest run test/e2e.test.ts",
"db:migrate:local": "wrangler d1 execute MEMORY_META --local --file=./migrations/0001_init.sql",
"db:migrate:remote": "wrangler d1 execute MEMORY_META --remote --file=./migrations/0001_init.sql"
},
"dependencies": {
"@mcp-ui/server": "^5.10.0",
"@modelcontextprotocol/sdk": "^1.29.0",
"jose": "^5.9.6",
"ulid": "^2.3.0",
"zod": "^4.4.3"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@cloudflare/vitest-pool-workers": "^0.5.40",
"@cloudflare/workers-types": "^4.20241224.0",
"@types/node": "^20.19.40",
"typescript": "^5.7.2",
"vitest": "~2.1.9",
"wrangler": "^4.90.0"
}
}