@fhirust/sdk 0.3.1 → 0.3.2

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/README.md +1 -0
  2. package/package.json +4 -4
package/README.md CHANGED
@@ -18,6 +18,7 @@ npm install @fhirust/sdk @bytecodealliance/componentize-js
18
18
  **Requirements:**
19
19
  - Node.js 18+ or Bun
20
20
  - TypeScript 5.0+
21
+ - `@bytecodealliance/componentize-js` >= 0.14.0 (0.19+ recommended for security fixes)
21
22
 
22
23
  ---
23
24
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fhirust/sdk",
3
- "version": "0.3.1",
3
+ "version": "0.3.2",
4
4
  "description": "TypeScript SDK for building FHIRust WASM plugins",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
@@ -43,7 +43,7 @@
43
43
  ],
44
44
  "license": "MIT",
45
45
  "peerDependencies": {
46
- "@bytecodealliance/componentize-js": ">=0.14.0"
46
+ "@bytecodealliance/componentize-js": ">=0.14.0 <1.0.0"
47
47
  },
48
48
  "peerDependenciesMeta": {
49
49
  "@bytecodealliance/componentize-js": {
@@ -51,9 +51,9 @@
51
51
  }
52
52
  },
53
53
  "devDependencies": {
54
- "@bytecodealliance/componentize-js": "^0.14.0",
54
+ "@bytecodealliance/componentize-js": "^0.19.3",
55
55
  "@types/node": "^25.2.2",
56
56
  "tsx": "^4.21.0",
57
57
  "typescript": "^5.5.0"
58
58
  }
59
- }
59
+ }