forked from rsinohara/json-to-zod
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
40 lines (40 loc) · 947 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
40
{
"name": "json-to-zod-tools",
"version": "0.0.1",
"description": "Converts JSON objects or files into simple Zod schemas.",
"main": "./dist/index.js",
"scripts": {
"build": "rimraf ./dist && tsc && copyfiles package.json ./dist && copyfiles LICENSE ./dist && copyfiles readme.md ./dist"
},
"keywords": [
"zod",
"json",
"converter",
"cli"
],
"author": "Mikkel Jakobsen",
"contributors": [
"Mikkel Jakobsen (https://github.com/spaceo)"
],
"license": "ISC",
"repository": {
"type": "git",
"url": "https://github.com/spaceo/json-to-zod"
},
"bin": {
"json-to-zod": "./dist/src/cli.js"
},
"dependencies": {
"cosmiconfig": "^9.0.0",
"prettier": "^2.3.2",
"zod": "^3.7.1"
},
"devDependencies": {
"@types/node": "^16.6.0",
"@types/prettier": "^2.3.2",
"copyfiles": "^2.4.1",
"rimraf": "^3.0.2",
"typescript": "^4.3.5"
},
"types": "index.d.ts"
}