@haste-health/operation-outcomes 0.11.1 → 0.12.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 +8 -9
package/package.json
CHANGED
|
@@ -1,29 +1,28 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@haste-health/operation-outcomes",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.12.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": "Haste Health Operation Outcomes library for TypeScript. Creates custom error type with FHIR OperationOutcome resource.",
|
|
9
10
|
"type": "module",
|
|
10
|
-
"description": "",
|
|
11
11
|
"main": "lib/index.js",
|
|
12
12
|
"types": "lib/index.d.ts",
|
|
13
|
-
"scripts": {
|
|
14
|
-
"build": "tsc",
|
|
15
|
-
"publish": "pnpm build && pnpm npm publish --access public --tolerate-republish"
|
|
16
|
-
},
|
|
17
13
|
"devDependencies": {
|
|
18
|
-
"@haste-health/fhir-types": "workspace:^",
|
|
19
14
|
"@jest/globals": "^29.7.0",
|
|
20
15
|
"@types/jest": "^29.5.14",
|
|
21
16
|
"jest": "^29.7.0",
|
|
22
17
|
"ts-jest": "^29.3.2",
|
|
23
|
-
"typescript": "5.9.2"
|
|
18
|
+
"typescript": "5.9.2",
|
|
19
|
+
"@haste-health/fhir-types": "^0.13.0"
|
|
24
20
|
},
|
|
25
21
|
"files": [
|
|
26
22
|
"lib/**",
|
|
27
23
|
"src/**"
|
|
28
|
-
]
|
|
24
|
+
],
|
|
25
|
+
"scripts": {
|
|
26
|
+
"build": "tsc"
|
|
27
|
+
}
|
|
29
28
|
}
|