@ferricstore/ferricstore 0.1.2 → 0.1.3

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/README.md CHANGED
@@ -14,7 +14,19 @@ FLOW.CREATE -> FLOW.CLAIM_DUE -> handler -> FLOW.TRANSITION / COMPLETE / FAIL /
14
14
  npm install @ferricstore/ferricstore
15
15
  ```
16
16
 
17
- Requires Node.js 24 or newer. The SDK is ESM-only and tested with Node 24 and 26.
17
+ Requires Node.js 22.22 or newer. The SDK ships ESM and CommonJS builds and is tested with Node 22, 24, and 26.
18
+
19
+ ESM:
20
+
21
+ ```ts
22
+ import { FerricStoreClient, JsonCodec } from "@ferricstore/ferricstore";
23
+ ```
24
+
25
+ CommonJS:
26
+
27
+ ```js
28
+ const { FerricStoreClient, JsonCodec } = require("@ferricstore/ferricstore");
29
+ ```
18
30
 
19
31
  ## Run FerricStore Locally
20
32