@haste-health/operation-execution 0.14.3 → 0.15.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,36 +1,35 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@haste-health/operation-execution",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.15.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": "Package to create operation definition executables.",
|
|
9
|
+
"description": "Package to create operation definition executables. Wraps operation logic with validation, typesafety, input/output handling, and error handling.",
|
|
10
10
|
"type": "module",
|
|
11
11
|
"main": "lib/index.js",
|
|
12
12
|
"types": "lib/index.d.ts",
|
|
13
|
-
"scripts": {
|
|
14
|
-
"build": "tsc",
|
|
15
|
-
"test": "pnpm node --experimental-vm-modules $(pnpm bin jest)",
|
|
16
|
-
"publish": "pnpm build && pnpm npm publish --access public --tolerate-republish"
|
|
17
|
-
},
|
|
18
13
|
"dependencies": {
|
|
19
|
-
"@haste-health/fhir-pointer": "
|
|
20
|
-
"@haste-health/fhir-types": "
|
|
21
|
-
"@haste-health/
|
|
22
|
-
"@haste-health/
|
|
14
|
+
"@haste-health/fhir-pointer": "^0.11.0",
|
|
15
|
+
"@haste-health/fhir-types": "^0.13.0",
|
|
16
|
+
"@haste-health/operation-outcomes": "^0.12.0",
|
|
17
|
+
"@haste-health/fhir-validation": "^0.15.0"
|
|
23
18
|
},
|
|
24
19
|
"devDependencies": {
|
|
25
|
-
"@haste-health/artifacts": "workspace:^",
|
|
26
|
-
"@haste-health/haste-health.fhir.r4.core": "workspace:^",
|
|
27
|
-
"@haste-health/hl7.fhir.r4.core": "workspace:^",
|
|
28
20
|
"@jest/globals": "^29.7.0",
|
|
29
21
|
"jest": "^29.7.0",
|
|
30
22
|
"ts-jest": "^29.3.2",
|
|
31
|
-
"typescript": "5.9.2"
|
|
23
|
+
"typescript": "5.9.2",
|
|
24
|
+
"@haste-health/artifacts": "^0.12.0",
|
|
25
|
+
"@haste-health/hl7.fhir.r4.core": "^0.5.0",
|
|
26
|
+
"@haste-health/haste-health.fhir.r4.core": "^0.8.0"
|
|
32
27
|
},
|
|
33
28
|
"files": [
|
|
34
29
|
"lib/**"
|
|
35
|
-
]
|
|
30
|
+
],
|
|
31
|
+
"scripts": {
|
|
32
|
+
"build": "tsc",
|
|
33
|
+
"test": "pnpm node --experimental-vm-modules $(pnpm bin jest)"
|
|
34
|
+
}
|
|
36
35
|
}
|