-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 1.7 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 1.7 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
{
"name": "@atomic-ehr/codegen",
"version": "0.0.13",
"description": "Code generation tools for FHIR resources and TypeSchema definitions",
"keywords": [
"fhir",
"codegen",
"typescript",
"healthcare",
"ehr",
"typeschema"
],
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"default": "./dist/index.js"
}
},
"type": "module",
"bin": {
"atomic-codegen": "./dist/cli/index.js"
},
"preferGlobal": true,
"files": [
"dist",
"assets"
],
"scripts": {
"build": "tsup",
"typecheck": "bunx tsc --noEmit",
"lint": "biome check",
"prune": "knip",
"prune:fix": "knip --fix",
"release": "bash ./scripts/release.sh"
},
"repository": {
"type": "git",
"url": "git+https://github.com/atomic-ehr/codegen.git"
},
"author": "Atomic EHR Team",
"license": "MIT",
"bugs": {
"url": "https://github.com/atomic-ehr/codegen/issues"
},
"homepage": "https://github.com/atomic-ehr/codegen#readme",
"dependencies": {
"@atomic-ehr/fhir-canonical-manager": "0.0.23",
"@atomic-ehr/fhirschema": "0.0.11",
"mustache": "^4.2.0",
"picocolors": "^1.1.1",
"yaml": "^2.8.3",
"yargs": "^18.0.0"
},
"devDependencies": {
"@biomejs/biome": "^2.4.4",
"@types/bun": "^1.3.9",
"@types/mustache": "^4.2.6",
"@types/node": "^22.19.11",
"@types/yargs": "^17.0.35",
"knip": "^5.88.1",
"tsup": "^8.5.1",
"typescript": "^5.9.3"
},
"overrides": {
"minimatch": ">=10.2.3",
"rollup": ">=4.59.0",
"smol-toml": ">=1.6.1",
"brace-expansion": ">=5.0.5",
"picomatch": ">=4.0.4"
}
}