forked from StefanTerdell/json-schema-to-zod
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.45 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
{
"name": "json-schema-to-zod",
"version": "1.1.1",
"description": "Converts JSON schema objects or files into Zod schemas",
"main": "index.js",
"scripts": {
"build": "npm i && jest && rimraf ./dist && tsc && copyfiles package.json LICENSE readme.md ./dist && prettier ./dist --write",
"dryrun": "npm run build && npm pub ./dist/ --dry-run",
"dev": "jest --watch",
"test": "jest"
},
"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)"
],
"license": "ISC",
"repository": {
"type": "git",
"url": "https://github.com/StefanTerdell/json-schema-to-zod"
},
"bin": {
"json-schema-to-zod": "./cli.js"
},
"dependencies": {
"@types/json-schema": "^7.0.9",
"json-refs": "^3.0.15",
"prettier": "^2.4.1"
},
"devDependencies": {
"@types/jest": "^29.2.2",
"@types/node": "^16.11.4",
"@types/prettier": "^2.4.1",
"copyfiles": "^2.4.1",
"jest": "^29.3.1",
"rimraf": "^3.0.2",
"ts-jest": "^29.0.3",
"typescript": "^5.1.6",
"zod": "^3.11.4"
},
"types": "index.d.ts"
}