@dragonmastery/zinia-forms-core 0.3.10 → 0.3.11

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dragonmastery/zinia-forms-core",
3
- "version": "0.3.10",
3
+ "version": "0.3.11",
4
4
  "description": "A modern, type-safe form system for Vue 3 with Zod validation and automatic component generation",
5
5
  "keywords": [
6
6
  "vue",
@@ -44,6 +44,15 @@
44
44
  "publishConfig": {
45
45
  "publish-branch": "apex"
46
46
  },
47
+ "scripts": {
48
+ "build": "tsup",
49
+ "dev": "tsup --watch",
50
+ "type-check": "tsc --noEmit",
51
+ "clean": "rimraf .turbo node_modules dist",
52
+ "prepublishOnly": "bun run build",
53
+ "publish:npm": "bun publish --access public --no-git-checks",
54
+ "postinstall": "node scripts/postinstall.js"
55
+ },
47
56
  "peerDependencies": {
48
57
  "daisyui": "^5.0.19",
49
58
  "pinia": "^3.0.2",
@@ -63,13 +72,5 @@
63
72
  "typescript": "~5.8.3",
64
73
  "vue": "3.5.14",
65
74
  "zod": "3.24.4"
66
- },
67
- "scripts": {
68
- "build": "tsup",
69
- "dev": "tsup --watch",
70
- "type-check": "tsc --noEmit",
71
- "clean": "rimraf .turbo node_modules dist",
72
- "publish:npm": "pnpm publish --access public --no-git-checks",
73
- "postinstall": "node scripts/postinstall.js"
74
75
  }
75
- }
76
+ }