react-form-draft 0.1.0 → 0.1.1

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 +4 -0
  2. package/package.json +5 -1
package/README.md CHANGED
@@ -336,3 +336,7 @@ Planned post-MVP work:
336
336
  ## License
337
337
 
338
338
  MIT
339
+
340
+ ## Maintainer Notes
341
+
342
+ Release and trusted publishing setup is documented in [`RELEASING.md`](./RELEASING.md). Security and publish-model notes are in [`SECURITY.md`](./SECURITY.md).
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "react-form-draft",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "description": "Persist and restore React form drafts with safe local storage defaults and first-class React Hook Form support.",
5
5
  "license": "MIT",
6
6
  "author": "Pooya Vaghef",
@@ -25,6 +25,10 @@
25
25
  "engines": {
26
26
  "node": ">=18"
27
27
  },
28
+ "publishConfig": {
29
+ "access": "public",
30
+ "provenance": true
31
+ },
28
32
  "scripts": {
29
33
  "build": "tsup",
30
34
  "clean": "rm -rf dist coverage",