schemashift-cli 0.11.0 → 0.13.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/dist/cli.js +881 -305
- package/dist/index.cjs +2 -2
- package/dist/index.js +2 -2
- package/package.json +12 -12
package/dist/index.cjs
CHANGED
|
@@ -33779,8 +33779,8 @@ var TIER_FEATURES = {
|
|
|
33779
33779
|
"free"
|
|
33780
33780
|
/* FREE */
|
|
33781
33781
|
]: {
|
|
33782
|
-
maxFiles:
|
|
33783
|
-
migrations: ["yup->zod"],
|
|
33782
|
+
maxFiles: 10,
|
|
33783
|
+
migrations: ["yup->zod", "joi->zod"],
|
|
33784
33784
|
devices: 1,
|
|
33785
33785
|
ciSupport: false,
|
|
33786
33786
|
prioritySupport: false,
|
package/dist/index.js
CHANGED
|
@@ -33730,8 +33730,8 @@ var TIER_FEATURES = {
|
|
|
33730
33730
|
"free"
|
|
33731
33731
|
/* FREE */
|
|
33732
33732
|
]: {
|
|
33733
|
-
maxFiles:
|
|
33734
|
-
migrations: ["yup->zod"],
|
|
33733
|
+
maxFiles: 10,
|
|
33734
|
+
migrations: ["yup->zod", "joi->zod"],
|
|
33735
33735
|
devices: 1,
|
|
33736
33736
|
ciSupport: false,
|
|
33737
33737
|
prioritySupport: false,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "schemashift-cli",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.13.0",
|
|
4
4
|
"description": "TypeScript schema migration CLI - migrate between Zod, Yup, Joi, and more",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -52,16 +52,16 @@
|
|
|
52
52
|
"node": ">=22.0.0"
|
|
53
53
|
},
|
|
54
54
|
"dependencies": {
|
|
55
|
-
"@schemashift/core": "0.
|
|
56
|
-
"@schemashift/io-ts-effect": "0.
|
|
57
|
-
"@schemashift/io-ts-zod": "0.
|
|
58
|
-
"@schemashift/joi-zod": "0.
|
|
59
|
-
"@schemashift/yup-zod": "0.
|
|
60
|
-
"@schemashift/zod-arktype": "0.
|
|
61
|
-
"@schemashift/zod-superstruct": "0.
|
|
62
|
-
"@schemashift/zod-valibot": "0.
|
|
63
|
-
"@schemashift/zod-v3-v4": "0.
|
|
64
|
-
"commander": "14.0.
|
|
55
|
+
"@schemashift/core": "0.13.0",
|
|
56
|
+
"@schemashift/io-ts-effect": "0.13.0",
|
|
57
|
+
"@schemashift/io-ts-zod": "0.13.0",
|
|
58
|
+
"@schemashift/joi-zod": "0.13.0",
|
|
59
|
+
"@schemashift/yup-zod": "0.13.0",
|
|
60
|
+
"@schemashift/zod-arktype": "0.13.0",
|
|
61
|
+
"@schemashift/zod-superstruct": "0.13.0",
|
|
62
|
+
"@schemashift/zod-valibot": "0.13.0",
|
|
63
|
+
"@schemashift/zod-v3-v4": "0.13.0",
|
|
64
|
+
"commander": "14.0.3",
|
|
65
65
|
"cosmiconfig": "9.0.0",
|
|
66
66
|
"glob": "13.0.0",
|
|
67
67
|
"listr2": "10.1.0",
|
|
@@ -69,7 +69,7 @@
|
|
|
69
69
|
"picocolors": "1.1.1"
|
|
70
70
|
},
|
|
71
71
|
"devDependencies": {
|
|
72
|
-
"@schemashift/license": "0.
|
|
72
|
+
"@schemashift/license": "0.12.0"
|
|
73
73
|
},
|
|
74
74
|
"publishConfig": {
|
|
75
75
|
"access": "public"
|