-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 1.93 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 1.93 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
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "@atomic-ehr/fhirpath",
"version": "0.1.5",
"description": "A TypeScript implementation of FHIRPath",
"type": "module",
"main": "./dist/index.node.js",
"module": "./dist/index.node.js",
"types": "./dist/index.node.d.ts",
"exports": {
".": {
"node": {
"types": "./dist/index.node.d.ts",
"default": "./dist/index.node.js"
},
"default": {
"types": "./dist/index.browser.d.ts",
"default": "./dist/index.browser.js"
}
}
},
"files": [
"dist",
"src"
],
"scripts": {
"build": "tsup",
"test": "./scripts/test.sh",
"test:output": "bun test test/*",
"typecheck": "bunx tsc --noEmit",
"prepublishOnly": "bun run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/atomic-ehr/fhirpath.git"
},
"keywords": [
"fhir",
"fhirpath",
"healthcare",
"typescript"
],
"author": "Atomic EHR Team",
"license": "MIT",
"bugs": {
"url": "https://github.com/atomic-ehr/fhirpath/issues"
},
"homepage": "https://github.com/atomic-ehr/fhirpath#readme",
"devDependencies": {
"@anthropic-ai/sdk": "^0.57.0",
"@rgrove/parse-xml": "^4.2.0",
"@types/bun": "latest",
"@types/js-yaml": "^4.0.9",
"@types/jsdom": "^21.1.7",
"@types/lodash": "^4.17.24",
"@types/node": "22.13.14",
"@types/turndown": "^5.0.6",
"@types/xml2js": "^0.4.14",
"@xmldom/xmldom": "^0.8.11",
"antlr4ts": "^0.5.0-alpha.4",
"antlr4ts-cli": "^0.5.0-alpha.4",
"js-yaml": "^4.1.1",
"jsdom": "^26.1.0",
"lodash": "^4.17.23",
"tsup": "8.5.0",
"turndown": "^7.2.2",
"typescript": "^5.9.3",
"typescript-mcp": "^0.0.14",
"xml2js": "^0.6.2"
},
"peerDependencies": {
"typescript": "^5"
},
"dependencies": {
"@atomic-ehr/fhir-canonical-manager": "^0.0.11",
"@atomic-ehr/fhirschema": "^0.0.2",
"@atomic-ehr/ucum": "^0.2.5",
"fast-xml-parser": "~5.5.8"
}
}