@reformer/core 1.0.0-beta.6 → 1.0.0-beta.8

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 -1
  2. package/package.json +3 -2
package/README.md CHANGED
@@ -25,7 +25,7 @@ Full documentation is available at [https://alexandrbukhtatyy.github.io/ReFormer
25
25
  ## Installation
26
26
 
27
27
  ```bash
28
- npm install @reformer/core
28
+ npm install @reformer/core@beta # Active development is underway, so you can try beta
29
29
  ```
30
30
 
31
31
  ## Quick Start
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@reformer/core",
3
- "version": "1.0.0-beta.6",
3
+ "version": "1.0.0-beta.8",
4
4
  "description": "Reactive form state management library for React with signals-based architecture",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
@@ -67,7 +67,8 @@
67
67
  "react-dom": "^18.0.0 || ^19.0.0"
68
68
  },
69
69
  "dependencies": {
70
- "@preact/signals-core": "^1.8.0"
70
+ "@preact/signals-core": "^1.8.0",
71
+ "uuid": "^13.0.0"
71
72
  },
72
73
  "devDependencies": {
73
74
  "@types/node": "^24.10.1",