zod-sqlite 1.0.0 → 1.0.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.
- package/package.json +13 -14
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "zod-sqlite",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.1",
|
|
4
4
|
"description": "Generate type-safe SQLite table schemas from Zod validation schemas.",
|
|
5
5
|
"private": false,
|
|
6
6
|
"author": {
|
|
@@ -40,17 +40,6 @@
|
|
|
40
40
|
"LICENSE"
|
|
41
41
|
],
|
|
42
42
|
"sideEffects": false,
|
|
43
|
-
"scripts": {
|
|
44
|
-
"build": "pnpm clean && tsup",
|
|
45
|
-
"dev": "tsup --watch",
|
|
46
|
-
"test": "vitest",
|
|
47
|
-
"typecheck": "tsc --noEmit",
|
|
48
|
-
"lint": "eslint src --ext .ts --fix",
|
|
49
|
-
"clean": "rm -rf dist",
|
|
50
|
-
"prepublishOnly": "pnpm build && pnpm typecheck && pnpm vitest --watch=false",
|
|
51
|
-
"release": "pnpm build && pnpm dlx @changesets/cli publish"
|
|
52
|
-
},
|
|
53
|
-
"packageManager": "pnpm@10.26.1",
|
|
54
43
|
"devDependencies": {
|
|
55
44
|
"@changesets/cli": "^2.29.8",
|
|
56
45
|
"@stylistic/eslint-plugin": "^5.6.1",
|
|
@@ -79,5 +68,15 @@
|
|
|
79
68
|
"schema",
|
|
80
69
|
"validation",
|
|
81
70
|
"zod-to-sqlite"
|
|
82
|
-
]
|
|
83
|
-
|
|
71
|
+
],
|
|
72
|
+
"scripts": {
|
|
73
|
+
"build": "pnpm clean && tsup",
|
|
74
|
+
"dev": "tsup --watch",
|
|
75
|
+
"test": "vitest",
|
|
76
|
+
"typecheck": "tsc --noEmit",
|
|
77
|
+
"lint": "eslint src --ext .ts --fix",
|
|
78
|
+
"clean": "rm -rf dist",
|
|
79
|
+
"ci:release": "pnpm build && pnpm dlx @changesets/cli publish",
|
|
80
|
+
"ci:version": "pnpm dlx @changesets/cli version && pnpm install --no-frozen-lockfile"
|
|
81
|
+
}
|
|
82
|
+
}
|