-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
52 lines (52 loc) · 1.27 KB
/
package.json
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
{
"name": "@fhirschema/codegen",
"version": "0.0.4",
"author": "niquola",
"license": "ISC",
"main": "dist/cli.js",
"bin": {
"fscg": "./dist/cli.js",
"fhirschema-codegen": "./dist/cli.js"
},
"source": "src/cli.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/fhir-schema/fhir-schema-codegen.git"
},
"bugs": {
"url": "https://github.com/fhir-schema/fhir-schema-codegen/issues"
},
"scripts": {
"build": "tsc",
"start": "node dist/cli.js",
"start:dev": "tsx watch src/cli.ts",
"dev": "tsc -w",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"get-schemas": "mkdir -p data && curl -L 'https://storage.googleapis.com/fhir-schema-registry/1.0.0/hl7.fhir.r4.core%234.0.1/package.ndjson.gz' | gunzip > data/hl7.fhir.r4.core.ndjson"
},
"keywords": [
"fhir",
"fhirschema",
"codegen",
"typescript",
"javascript"
],
"description": "",
"devDependencies": {
"@types/jest": "^29.5.14",
"@types/node": "^22.8.7",
"jest": "^29.7.0",
"ts-jest": "^29.2.5",
"tsx": "^4.19.2",
"typescript": "^5.6.3"
},
"dependencies": {
"@types/commander": "^2.12.0",
"commander": "^12.1.0"
},
"publishConfig": {
"access": "public"
}
}