@provydon/vue-auto-save 1.0.0 → 1.1.0

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 (1) hide show
  1. package/package.json +15 -4
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@provydon/vue-auto-save",
3
- "version": "1.0.0",
3
+ "version": "1.1.0",
4
4
  "description": "A Vue 3 composable that autosaves forms with debounce, optional field skipping, and blockable watchers.",
5
5
  "main": "./dist/useAutoSaveForm.cjs",
6
6
  "module": "./dist/useAutoSaveForm.mjs",
@@ -12,8 +12,17 @@
12
12
  "require": "./dist/useAutoSaveForm.cjs"
13
13
  }
14
14
  },
15
- "files": ["dist"],
16
- "keywords": ["vue", "composable", "autosave", "form", "debounce", "vue3"],
15
+ "files": [
16
+ "dist"
17
+ ],
18
+ "keywords": [
19
+ "vue",
20
+ "composable",
21
+ "autosave",
22
+ "form",
23
+ "debounce",
24
+ "vue3"
25
+ ],
17
26
  "author": "Providence Ifeosame",
18
27
  "license": "MIT",
19
28
  "repository": {
@@ -25,7 +34,9 @@
25
34
  },
26
35
  "homepage": "https://github.com/provydon/vue-auto-save#readme",
27
36
  "sideEffects": false,
28
- "publishConfig": { "access": "public" },
37
+ "publishConfig": {
38
+ "access": "public"
39
+ },
29
40
  "scripts": {
30
41
  "build": "vite build",
31
42
  "dev": "vite",