@neutro/form 0.0.2 → 0.0.4

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 +25 -3
package/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # @neutro/form
2
2
 
3
- Framework-agnostic form state management. One closure factory — `createForm` — that handles validation, async checks, array operations, and DOM binding. Thin reactive adapters for React, Vue, Svelte, SolidJS, and Angular wrap the same engine.
3
+ High-performance, zero-dependency, framework-agnostic reactive form engine. One closure factory — `createForm` — that handles validation, async checks, array operations, and DOM binding. Thin reactive adapters for React, Vue, Svelte, SolidJS, and Angular wrap the same engine.
4
4
 
5
5
  ## Install
6
6
 
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@neutro/form",
3
- "version": "0.0.2",
4
- "description": "Framework-agnostic form state management for React, Vue, Svelte, SolidJS, and Angular",
3
+ "version": "0.0.4",
4
+ "description": "High-performance, zero-dependency, framework-agnostic reactive form engine.",
5
5
  "keywords": [
6
6
  "form",
7
7
  "validation",
@@ -55,6 +55,28 @@
55
55
  "require": "./dist/adapters/angular.cjs"
56
56
  }
57
57
  },
58
+ "typesVersions": {
59
+ "*": {
60
+ "core": [
61
+ "./dist/core.d.ts"
62
+ ],
63
+ "adapters/react": [
64
+ "./dist/adapters/react.d.ts"
65
+ ],
66
+ "adapters/svelte": [
67
+ "./dist/adapters/svelte.d.ts"
68
+ ],
69
+ "adapters/vue": [
70
+ "./dist/adapters/vue.d.ts"
71
+ ],
72
+ "adapters/solid": [
73
+ "./dist/adapters/solid.d.ts"
74
+ ],
75
+ "adapters/angular": [
76
+ "./dist/adapters/angular.d.ts"
77
+ ]
78
+ }
79
+ },
58
80
  "peerDependencies": {
59
81
  "react": ">=17",
60
82
  "react-dom": ">=17",
@@ -87,8 +109,8 @@
87
109
  "tsup": "^8.0.0",
88
110
  "@neutro/form-core": "0.0.1",
89
111
  "@neutro/form-react": "0.0.1",
90
- "@neutro/form-svelte": "0.0.1",
91
112
  "@neutro/form-vue": "0.0.1",
113
+ "@neutro/form-svelte": "0.0.1",
92
114
  "@neutro/form-angular": "0.0.1",
93
115
  "@neutro/form-solid": "0.0.1"
94
116
  },