-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.68 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.68 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
{
"name": "aidbox-hl7",
"module": "src/index.ts",
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/bun": "latest",
"eslint": "^10.2.1",
"fast-xml-parser": "^5.3.5",
"knip": "^6.6.2",
"typescript-eslint": "^8.59.0"
},
"peerDependencies": {
"typescript": "^5"
},
"private": true,
"scripts": {
"dev": "bash scripts/dev.sh",
"stop": "bash scripts/stop.sh",
"logs": "bash -c 'tail -f logs/server.log'",
"typecheck": "bash scripts/typecheck.sh",
"lint": "eslint . --max-warnings 0",
"lint:fix": "eslint . --fix --max-warnings 0",
"knip": "knip-bun",
"mllp": "bun src/mllp/mllp-server.ts",
"test-mllp": "bun scripts/test-mllp-client.ts",
"regenerate-hl7v2": "bash scripts/regenerate-hl7v2.sh",
"regenerate-fhir": "bun scripts/regenerate-fhir.ts",
"generate-hl7v2-reference": "bun scripts/generate-hl7v2-reference.ts",
"migrate": "bun src/migrate.ts",
"test:all": "bun run lint && bun run knip && bun test && bun test:integration",
"test:local": "bun run lint && bun run knip && bun test && bun test:smoke",
"test:unit": "bun test",
"test:integration": "bun test --test-root ./test/integration --preload ./test/integration/preload.ts --max-concurrency=1",
"test:smoke": "bun test --test-root ./test/integration --preload ./test/integration/preload.ts --max-concurrency=1 --test-name-pattern \"smoke: \"",
"reset-integration-aidbox": "bun scripts/reset-integration-aidbox.ts",
"truncate-aidbox": "bun scripts/truncate-aidbox.ts"
},
"type": "module",
"dependencies": {
"@atomic-ehr/codegen": "0.0.4-canary.20251216132615.27719de",
"@atomic-ehr/hl7v2": "0.0.1-canary.22.202c8cc"
}
}