@haste-health/meta-value 0.12.1 → 0.13.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +15 -16
package/package.json
CHANGED
|
@@ -1,23 +1,15 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@haste-health/meta-value",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.13.0",
|
|
4
4
|
"homepage": "https://haste.health",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
7
7
|
"url": "https://github.com/HasteHealth/HasteHealth.git"
|
|
8
8
|
},
|
|
9
|
-
"description": "",
|
|
9
|
+
"description": "Haste Health Meta Value library for TypeScript. Wraps values in FHIR metadata.",
|
|
10
10
|
"main": "lib/index.js",
|
|
11
11
|
"types": "lib/index.d.ts",
|
|
12
12
|
"type": "module",
|
|
13
|
-
"scripts": {
|
|
14
|
-
"_generate_meta": "pnpm node ../cli/lib/hastehealth.js generate meta --output src/v2/generated/meta/r4.ts && pnpm node ../cli/lib/hastehealth.js generate meta --version 4.3 --output src/v2/generated/meta/r4b.ts",
|
|
15
|
-
"_generate_type_canonical": "pnpm node ../cli/lib/hastehealth.js generate type-to-canonical --output src/v2/generated/type-canonical/r4.ts && pnpm node ../cli/lib/hastehealth.js generate type-to-canonical --version 4.3 --output src/v2/generated/type-canonical/r4b.ts",
|
|
16
|
-
"generate": "pnpm _generate_meta && pnpm _generate_type_canonical",
|
|
17
|
-
"build": "tsc",
|
|
18
|
-
"test": "pnpm node --experimental-vm-modules $(pnpm bin jest)",
|
|
19
|
-
"publish": "pnpm build && pnpm npm publish --access public --tolerate-republish"
|
|
20
|
-
},
|
|
21
13
|
"keywords": [],
|
|
22
14
|
"author": "haste-health",
|
|
23
15
|
"license": "ISC",
|
|
@@ -25,16 +17,16 @@
|
|
|
25
17
|
"@babel/plugin-syntax-import-attributes": "^7.26.0",
|
|
26
18
|
"@babel/preset-env": "^7.26.9",
|
|
27
19
|
"@babel/preset-typescript": "^7.26.0",
|
|
28
|
-
"@haste-health/artifacts": "workspace:^",
|
|
29
|
-
"@haste-health/codegen": "workspace:^",
|
|
30
|
-
"@haste-health/fhir-types": "workspace:^",
|
|
31
|
-
"@haste-health/haste-health.fhir.r4.core": "workspace:^",
|
|
32
|
-
"@haste-health/hl7.fhir.r4.core": "workspace:^",
|
|
33
20
|
"@jest/globals": "^29.7.0",
|
|
34
21
|
"@types/jest": "^29.5.14",
|
|
35
22
|
"jest": "^29.7.0",
|
|
36
23
|
"ts-jest": "^29.3.2",
|
|
37
|
-
"typescript": "5.9.2"
|
|
24
|
+
"typescript": "5.9.2",
|
|
25
|
+
"@haste-health/artifacts": "^0.12.0",
|
|
26
|
+
"@haste-health/haste-health.fhir.r4.core": "^0.8.0",
|
|
27
|
+
"@haste-health/hl7.fhir.r4.core": "^0.5.0",
|
|
28
|
+
"@haste-health/fhir-types": "^0.13.0",
|
|
29
|
+
"@haste-health/codegen": "^0.13.0"
|
|
38
30
|
},
|
|
39
31
|
"files": [
|
|
40
32
|
"lib/**"
|
|
@@ -46,5 +38,12 @@
|
|
|
46
38
|
"./spoof": "./lib/v2/spoof.js",
|
|
47
39
|
"./utilities": "./lib/utilities.js",
|
|
48
40
|
"./interface": "./lib/interface.js"
|
|
41
|
+
},
|
|
42
|
+
"scripts": {
|
|
43
|
+
"_generate_meta": "pnpm node ../cli/lib/hastehealth.js generate meta --output src/v2/generated/meta/r4.ts && pnpm node ../cli/lib/hastehealth.js generate meta --version 4.3 --output src/v2/generated/meta/r4b.ts",
|
|
44
|
+
"_generate_type_canonical": "pnpm node ../cli/lib/hastehealth.js generate type-to-canonical --output src/v2/generated/type-canonical/r4.ts && pnpm node ../cli/lib/hastehealth.js generate type-to-canonical --version 4.3 --output src/v2/generated/type-canonical/r4b.ts",
|
|
45
|
+
"generate": "pnpm _generate_meta && pnpm _generate_type_canonical",
|
|
46
|
+
"build": "tsc",
|
|
47
|
+
"test": "pnpm node --experimental-vm-modules $(pnpm bin jest)"
|
|
49
48
|
}
|
|
50
49
|
}
|