@haste-health/fhir-patch-building 0.10.1 → 0.11.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 +11 -12
package/package.json
CHANGED
|
@@ -1,35 +1,34 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@haste-health/fhir-patch-building",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.11.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": "JSON Patch building
|
|
9
|
+
"description": "JSON Patch building using typesafe FHIR pointers.",
|
|
10
10
|
"type": "module",
|
|
11
11
|
"main": "./lib/index.js",
|
|
12
12
|
"types": "./lib/index.d.ts",
|
|
13
|
-
"scripts": {
|
|
14
|
-
"build": "pnpm 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
|
"devDependencies": {
|
|
19
|
-
"@haste-health/fhir-types": "workspace:^",
|
|
20
14
|
"@jest/globals": "^29.7.0",
|
|
21
15
|
"jest": "^29.7.0",
|
|
22
16
|
"ts-jest": "^29.3.2",
|
|
23
|
-
"typescript": "5.9.2"
|
|
17
|
+
"typescript": "5.9.2",
|
|
18
|
+
"@haste-health/fhir-types": "^0.13.0"
|
|
24
19
|
},
|
|
25
20
|
"dependencies": {
|
|
26
|
-
"@haste-health/fhir-pointer": "workspace:^",
|
|
27
21
|
"fast-json-patch": "^3.1.1",
|
|
28
|
-
"immer": "^10.1.1"
|
|
22
|
+
"immer": "^10.1.1",
|
|
23
|
+
"@haste-health/fhir-pointer": "^0.11.0"
|
|
29
24
|
},
|
|
30
25
|
"files": [
|
|
31
26
|
"readme.md",
|
|
32
27
|
"lib/**",
|
|
33
28
|
"src/**"
|
|
34
|
-
]
|
|
29
|
+
],
|
|
30
|
+
"scripts": {
|
|
31
|
+
"build": "pnpm tsc",
|
|
32
|
+
"test": "pnpm node --experimental-vm-modules $(pnpm bin jest)"
|
|
33
|
+
}
|
|
35
34
|
}
|