schemashift-cli 0.13.0 → 0.14.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 (2) hide show
  1. package/README.md +22 -2
  2. package/package.json +12 -11
package/README.md CHANGED
@@ -1,6 +1,11 @@
1
1
  # schemashift-cli
2
2
 
3
- TypeScript schema migration CLI. Convert between Zod, Yup, Joi, io-ts, and Valibot with AST-based transformations.
3
+ TypeScript schema migration CLI. Convert between Zod, Yup, Joi, io-ts, Valibot, ArkType, Superstruct, and Effect Schema with AST-based transformations.
4
+
5
+ [![npm version](https://img.shields.io/npm/v/schemashift-cli.svg)](https://www.npmjs.com/package/schemashift-cli)
6
+ [![npm downloads](https://img.shields.io/npm/dm/schemashift-cli.svg)](https://www.npmjs.com/package/schemashift-cli)
7
+ [![CI](https://github.com/jdmay2/schemashift/actions/workflows/ci.yml/badge.svg)](https://github.com/jdmay2/schemashift/actions/workflows/ci.yml)
8
+ [![License: MIT](https://img.shields.io/badge/License-MIT-blue.svg)](https://opensource.org/licenses/MIT)
4
9
 
5
10
  ## Install
6
11
 
@@ -221,10 +226,25 @@ schemashift rollback
221
226
  |----------|-------------|
222
227
  | `SCHEMASHIFT_LICENSE_KEY` | License key for CI/CD (avoids interactive activation) |
223
228
 
229
+ ## Related Packages
230
+
231
+ | Package | Description |
232
+ |---------|-------------|
233
+ | [@schemashift/core](https://www.npmjs.com/package/@schemashift/core) | Core analysis and transformation engine |
234
+ | [@schemashift/yup-zod](https://www.npmjs.com/package/@schemashift/yup-zod) | Yup ↔ Zod transformer |
235
+ | [@schemashift/joi-zod](https://www.npmjs.com/package/@schemashift/joi-zod) | Joi → Zod transformer |
236
+ | [@schemashift/zod-v3-v4](https://www.npmjs.com/package/@schemashift/zod-v3-v4) | Zod v3 → v4 upgrade |
237
+ | [@schemashift/io-ts-zod](https://www.npmjs.com/package/@schemashift/io-ts-zod) | io-ts → Zod transformer |
238
+ | [@schemashift/zod-valibot](https://www.npmjs.com/package/@schemashift/zod-valibot) | Zod ↔ Valibot transformer |
239
+ | [@schemashift/zod-arktype](https://www.npmjs.com/package/@schemashift/zod-arktype) | Zod ↔ ArkType transformer |
240
+ | [@schemashift/zod-superstruct](https://www.npmjs.com/package/@schemashift/zod-superstruct) | Zod ↔ Superstruct transformer |
241
+ | [@schemashift/io-ts-effect](https://www.npmjs.com/package/@schemashift/io-ts-effect) | io-ts → Effect Schema transformer |
242
+
224
243
  ## Links
225
244
 
226
- - [Documentation](https://schemashift.qwady.app/docs)
245
+ - [Documentation](https://schemashift.qwady.app/docs.html)
227
246
  - [Pricing](https://schemashift.qwady.app)
247
+ - [Migration Guides](https://schemashift.qwady.app/migrate-yup-to-zod.html)
228
248
 
229
249
  ## License
230
250
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "schemashift-cli",
3
- "version": "0.13.0",
3
+ "version": "0.14.0",
4
4
  "description": "TypeScript schema migration CLI - migrate between Zod, Yup, Joi, and more",
5
5
  "type": "module",
6
6
  "bin": {
@@ -44,7 +44,8 @@
44
44
  },
45
45
  "repository": {
46
46
  "type": "git",
47
- "url": "https://github.com/jdmay2/schemashift"
47
+ "url": "https://github.com/jdmay2/schemashift",
48
+ "directory": "packages/cli"
48
49
  },
49
50
  "author": "Joseph May",
50
51
  "license": "MIT",
@@ -52,15 +53,15 @@
52
53
  "node": ">=22.0.0"
53
54
  },
54
55
  "dependencies": {
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",
56
+ "@schemashift/core": "0.14.0",
57
+ "@schemashift/io-ts-effect": "0.14.0",
58
+ "@schemashift/io-ts-zod": "0.14.0",
59
+ "@schemashift/joi-zod": "0.14.0",
60
+ "@schemashift/yup-zod": "0.14.0",
61
+ "@schemashift/zod-arktype": "0.14.0",
62
+ "@schemashift/zod-superstruct": "0.14.0",
63
+ "@schemashift/zod-valibot": "0.14.0",
64
+ "@schemashift/zod-v3-v4": "0.14.0",
64
65
  "commander": "14.0.3",
65
66
  "cosmiconfig": "9.0.0",
66
67
  "glob": "13.0.0",