forked from StefanTerdell/zod-to-json-schema
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.43 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
{
"name": "zod-to-json-schema",
"version": "3.21.1",
"description": "Converts Zod schemas to Json Schemas",
"main": "index.js",
"scripts": {
"test": "jest",
"dev": "jest --watch",
"build": "npm i && jest && rimraf dist && tsc && node copyPackageFiles.js",
"dryrun": "npm run build && npm pub ./dist/ --dry-run"
},
"keywords": [
"zod",
"json",
"schema",
"open",
"api",
"conversion"
],
"author": "Stefan Terdell",
"contributors": [
"Hammad Asif (https://github.com/mrhammadasif)",
"Noah Rosenzweig (https://github.com/Noah2610)",
"John Wright (https://github.com/johngeorgewright)",
"Krzysztof Ciombor (https://github.com/krzysztofciombor)",
"Yuta Mombetsu (https://github.com/mokocm)",
"Tom Arad (https://github.com/tomarad)",
"Isaac Way (https://github.com/iway1)",
"Andreas Berger (https://github.com/Andy2003)",
"Jan Potoms (https://github.com/Janpot)"
],
"repository": {
"type": "git",
"url": "https://github.com/StefanTerdell/zod-to-json-schema"
},
"license": "ISC",
"peerDependencies": {
"zod": "^3.21.4"
},
"devDependencies": {
"@types/jest": "^26.0.24",
"@types/json-schema": "^7.0.9",
"ajv": "^8.6.3",
"ajv-formats": "^2.1.1",
"jest": "^26.6.3",
"json-schema-deref-sync": "^0.14.0",
"rimraf": "^3.0.2",
"ts-jest": "^26.5.2",
"typescript": "^4.9.4",
"zod": "^3.21.4"
},
"types": "index.d.ts"
}