mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-15 09:04:07 -08:00
247bcc16c8
Co-authored-by: cstuncsik <5410822+cstuncsik@users.noreply.github.com>
69 lines
2 KiB
JSON
69 lines
2 KiB
JSON
{
|
|
"name": "@n8n/json-schema-to-zod",
|
|
"version": "1.1.0",
|
|
"description": "Converts JSON schema objects into Zod schemas",
|
|
"types": "./dist/types/index.d.ts",
|
|
"main": "./dist/cjs/index.js",
|
|
"module": "./dist/esm/index.js",
|
|
"exports": {
|
|
"import": {
|
|
"types": "./dist/types/index.d.ts",
|
|
"default": "./dist/esm/index.js"
|
|
},
|
|
"require": {
|
|
"types": "./dist/types/index.d.ts",
|
|
"default": "./dist/cjs/index.js"
|
|
}
|
|
},
|
|
"scripts": {
|
|
"clean": "rimraf dist .turbo",
|
|
"typecheck": "tsc --noEmit",
|
|
"dev": "tsc -w",
|
|
"format": "biome format --write src",
|
|
"format:check": "biome ci src",
|
|
"lint": "eslint . --quiet",
|
|
"lintfix": "eslint . --fix",
|
|
"build:types": "tsc -p tsconfig.types.json",
|
|
"build:cjs": "tsc -p tsconfig.cjs.json && node postcjs.js",
|
|
"build:esm": "tsc -p tsconfig.esm.json && node postesm.js",
|
|
"build": "rimraf ./dist && pnpm run build:types && pnpm run build:cjs && pnpm run build:esm",
|
|
"dry": "pnpm run build && pnpm pub --dry-run",
|
|
"test": "jest",
|
|
"test:watch": "jest --watch"
|
|
},
|
|
"keywords": [
|
|
"zod",
|
|
"json",
|
|
"schema",
|
|
"converter",
|
|
"cli"
|
|
],
|
|
"author": "Stefan Terdell",
|
|
"contributors": [
|
|
"Chen (https://github.com/werifu)",
|
|
"Nuno Carduso (https://github.com/ncardoso-barracuda)",
|
|
"Lars Strojny (https://github.com/lstrojny)",
|
|
"Navtoj Chahal (https://github.com/navtoj)",
|
|
"Ben McCann (https://github.com/benmccann)",
|
|
"Dmitry Zakharov (https://github.com/DZakh)",
|
|
"Michel Turpin (https://github.com/grimly)",
|
|
"David Barratt (https://github.com/davidbarratt)",
|
|
"pevisscher (https://github.com/pevisscher)",
|
|
"Aidin Abedi (https://github.com/aidinabedi)",
|
|
"Brett Zamir (https://github.com/brettz9)",
|
|
"n8n (https://github.com/n8n-io)"
|
|
],
|
|
"license": "ISC",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/n8n-io/n8n"
|
|
},
|
|
"peerDependencies": {
|
|
"zod": "^3.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/json-schema": "^7.0.15",
|
|
"zod": "catalog:"
|
|
}
|
|
}
|