@dragonmastery/zinia-forms-core 0.3.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.
- package/LICENSE +75 -0
- package/README.md +108 -0
- package/dist/index.d.ts +2163 -0
- package/dist/index.js +8544 -0
- package/dist/index.js.map +1 -0
- package/package.json +75 -0
- package/scripts/postinstall.js +27 -0
package/package.json
ADDED
|
@@ -0,0 +1,75 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@dragonmastery/zinia-forms-core",
|
|
3
|
+
"version": "0.3.0",
|
|
4
|
+
"description": "A modern, type-safe form system for Vue 3 with Zod validation and automatic component generation",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"vue",
|
|
7
|
+
"vue3",
|
|
8
|
+
"forms",
|
|
9
|
+
"zod",
|
|
10
|
+
"typescript",
|
|
11
|
+
"validation",
|
|
12
|
+
"daisyui",
|
|
13
|
+
"tailwind",
|
|
14
|
+
"form-builder",
|
|
15
|
+
"reactive",
|
|
16
|
+
"schema"
|
|
17
|
+
],
|
|
18
|
+
"author": "DragonMastery",
|
|
19
|
+
"license": "SEE LICENSE IN LICENSE",
|
|
20
|
+
"homepage": "https://github.com/DragonMastery/zinia-forms#readme",
|
|
21
|
+
"bugs": {
|
|
22
|
+
"url": "https://github.com/DragonMastery/zinia-forms/issues"
|
|
23
|
+
},
|
|
24
|
+
"type": "module",
|
|
25
|
+
"main": "./dist/index.js",
|
|
26
|
+
"types": "./dist/index.d.ts",
|
|
27
|
+
"repository": {
|
|
28
|
+
"type": "git",
|
|
29
|
+
"url": "git+https://github.com/DragonMastery/zinia-forms.git"
|
|
30
|
+
},
|
|
31
|
+
"exports": {
|
|
32
|
+
".": {
|
|
33
|
+
"types": "./dist/index.d.ts",
|
|
34
|
+
"import": "./dist/index.js",
|
|
35
|
+
"default": "./dist/index.js"
|
|
36
|
+
}
|
|
37
|
+
},
|
|
38
|
+
"files": [
|
|
39
|
+
"dist",
|
|
40
|
+
"README.md",
|
|
41
|
+
"LICENSE",
|
|
42
|
+
"scripts/postinstall.js"
|
|
43
|
+
],
|
|
44
|
+
"publishConfig": {
|
|
45
|
+
"publish-branch": "apex"
|
|
46
|
+
},
|
|
47
|
+
"peerDependencies": {
|
|
48
|
+
"daisyui": "^5.0.19",
|
|
49
|
+
"pinia": "^3.0.2",
|
|
50
|
+
"tailwindcss": "^4.1.4",
|
|
51
|
+
"vue": "^3.5.13",
|
|
52
|
+
"zod": "^3.24.4"
|
|
53
|
+
},
|
|
54
|
+
"devDependencies": {
|
|
55
|
+
"@types/node": "22.15.18",
|
|
56
|
+
"@vue/compiler-sfc": "3.5.14",
|
|
57
|
+
"daisyui": "5.0.35",
|
|
58
|
+
"pinia": "3.0.2",
|
|
59
|
+
"prettier": "3.5.3",
|
|
60
|
+
"rimraf": "6.0.1",
|
|
61
|
+
"tailwindcss": "4.1.7",
|
|
62
|
+
"tsup": "8.5.0",
|
|
63
|
+
"typescript": "~5.8.3",
|
|
64
|
+
"vue": "3.5.14",
|
|
65
|
+
"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
|
+
}
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
#!/usr/bin/env node
|
|
2
|
+
|
|
3
|
+
console.log('\n');
|
|
4
|
+
console.log('═══════════════════════════════════════════════════════════════');
|
|
5
|
+
console.log(' Thanks for installing Zinia Forms!');
|
|
6
|
+
console.log('═══════════════════════════════════════════════════════════════');
|
|
7
|
+
console.log('');
|
|
8
|
+
console.log('⚠️ IMPORTANT: LICENSE NOTICE');
|
|
9
|
+
console.log('');
|
|
10
|
+
console.log('This is PROPRIETARY software - Evaluation use only.');
|
|
11
|
+
console.log('');
|
|
12
|
+
console.log('✅ You may use this package for:');
|
|
13
|
+
console.log(' • Evaluation and testing in non-production environments');
|
|
14
|
+
console.log(' • Local development and proof-of-concept work');
|
|
15
|
+
console.log('');
|
|
16
|
+
console.log('❌ You may NOT without a commercial license:');
|
|
17
|
+
console.log(' • Use in production environments');
|
|
18
|
+
console.log(' • Use in commercial applications');
|
|
19
|
+
console.log(' • Redistribute or modify');
|
|
20
|
+
console.log('');
|
|
21
|
+
console.log('📄 See LICENSE file for complete terms.');
|
|
22
|
+
console.log('');
|
|
23
|
+
console.log('💼 For production licensing:');
|
|
24
|
+
console.log(' https://github.com/DragonMastery/zinia-forms');
|
|
25
|
+
console.log('');
|
|
26
|
+
console.log('═══════════════════════════════════════════════════════════════');
|
|
27
|
+
console.log('\n');
|