-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
39 lines (39 loc) · 909 Bytes
/
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
{
"name": "json-to-zod",
"version": "1.1.2",
"description": "Converts JSON objects or files into simple Zod schemas.",
"main": "index.js",
"scripts": {
"build": "rimraf ./dist && tsc && copyfiles package.json ./dist && copyfiles LICENSE ./dist && copyfiles readme.md ./dist"
},
"keywords": [
"zod",
"json",
"converter",
"cli"
],
"author": "Stefan Terdell",
"contributors": [
"Renato Sinohara (https://github.com/rsinohara)"
],
"license": "ISC",
"repository": {
"type": "git",
"url": "https://github.com/StefanTerdell/json-to-zod"
},
"bin": {
"json-to-zod": "./src/cli.js"
},
"dependencies": {
"prettier": "^2.3.2"
},
"devDependencies": {
"@types/node": "^16.6.0",
"@types/prettier": "^2.3.2",
"copyfiles": "^2.4.1",
"rimraf": "^3.0.2",
"typescript": "^4.3.5",
"zod": "^3.7.1"
},
"types": "index.d.ts"
}