@haste-health/fhir-validation 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.
Files changed (2) hide show
  1. package/lib/.DS_Store +0 -0
  2. package/package.json +18 -18
package/lib/.DS_Store ADDED
Binary file
package/package.json CHANGED
@@ -1,42 +1,38 @@
1
1
  {
2
2
  "name": "@haste-health/fhir-validation",
3
- "version": "0.14.3",
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": "Haste Health FHIR Validation library for TypeScript.",
9
10
  "type": "module",
10
11
  "main": "lib/structural/index.js",
11
12
  "types": "lib/structural/index.d.ts",
12
- "scripts": {
13
- "build": "tsc",
14
- "test": "pnpm node --experimental-vm-modules $(pnpm bin jest)",
15
- "publish": "pnpm build && pnpm npm publish --access public --tolerate-republish"
16
- },
17
13
  "dependencies": {
18
- "@haste-health/codegen": "workspace:^",
19
- "@haste-health/fhir-pointer": "workspace:^",
20
- "@haste-health/fhirpath": "workspace:^",
21
- "@haste-health/meta-value": "workspace:^",
22
- "@haste-health/operation-outcomes": "workspace:^",
23
- "jsonpointer": "^5.0.1"
14
+ "jsonpointer": "^5.0.1",
15
+ "@haste-health/codegen": "^0.13.0",
16
+ "@haste-health/fhir-pointer": "^0.11.0",
17
+ "@haste-health/fhirpath": "^0.13.0",
18
+ "@haste-health/meta-value": "^0.13.0",
19
+ "@haste-health/operation-outcomes": "^0.12.0"
24
20
  },
25
21
  "devDependencies": {
26
22
  "@babel/plugin-syntax-import-attributes": "^7.26.0",
27
23
  "@babel/preset-env": "^7.26.9",
28
24
  "@babel/preset-typescript": "^7.26.0",
29
- "@haste-health/artifacts": "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
- "@haste-health/hl7.fhir.r4.test-data": "workspace:^",
34
25
  "@jest/globals": "^29.7.0",
35
26
  "@types/babel__preset-env": "^7.10.0",
36
27
  "@types/jest": "^29.5.14",
37
28
  "jest": "^29.7.0",
38
29
  "ts-jest": "^29.3.2",
39
- "typescript": "5.9.2"
30
+ "typescript": "5.9.2",
31
+ "@haste-health/hl7.fhir.r4.core": "^0.5.0",
32
+ "@haste-health/artifacts": "^0.12.0",
33
+ "@haste-health/hl7.fhir.r4.test-data": "^0.3.0",
34
+ "@haste-health/haste-health.fhir.r4.core": "^0.8.0",
35
+ "@haste-health/fhir-types": "^0.13.0"
40
36
  },
41
37
  "files": [
42
38
  "lib/**",
@@ -46,5 +42,9 @@
46
42
  ".": "./lib/index.js",
47
43
  "./structural": "./lib/structural/index.js",
48
44
  "./types": "./lib/types.js"
45
+ },
46
+ "scripts": {
47
+ "build": "tsc",
48
+ "test": "pnpm node --experimental-vm-modules $(pnpm bin jest)"
49
49
  }
50
50
  }