forked from fabien0102/ts-to-zod
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
101 lines (101 loc) · 2.61 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "ts-to-zod",
"description": "Generate zod schemas from typescript types/interfaces",
"version": "3.0.0",
"homepage": "https://github.com/fabien0102/ts-to-zod",
"bugs": "https://github.com/fabien0102/ts-to-zod/issues",
"repository": "fabien0102/ts-to-zod",
"keywords": [
"zod",
"typescript",
"generator",
"oclif"
],
"author": "Fabien Bernard @fabien0102",
"types": "lib/index.d.ts",
"main": "lib/index.js",
"bin": {
"ts-to-zod": "bin/run"
},
"scripts": {
"build": "tsc -p tsconfig.package.json",
"prepublishOnly": "yarn test:ci && rimraf lib && yarn build",
"format": "eslint **/*.{js,jsx,ts,tsx} --fix && prettier **/*.{js,jsx,ts,tsx,json} --write",
"test": "jest",
"test:ci": "jest --ci --coverage && yarn gen:all && tsc --noEmit",
"gen:all": "./bin/run --all",
"gen:example": "./bin/run --config example",
"gen:config": "./bin/run --config config",
"prepare": "husky install"
},
"files": [
"LICENSE",
"README.md",
"ts-to-zod-logo.svg",
"lib",
"bin"
],
"license": "MIT",
"dependencies": {
"@oclif/command": "^1.8.6",
"@oclif/config": "^1.17.1",
"@oclif/errors": "^1.3",
"@oclif/plugin-help": "^3.2.7",
"@typescript/vfs": "^1.3.5",
"async": "^3.2.0",
"case": "^1.6.3",
"chokidar": "^3.5.1",
"fs-extra": "^9.1.0",
"inquirer": "^8.2.0",
"lodash": "^4.17.21",
"lz-string": "^1.4.4",
"ora": "^5.4.0",
"prettier": "2.2.1",
"rxjs": "^7.4.0",
"slash": "^3.0.0",
"threads": "^1.7.0",
"tslib": "^2.3.1",
"tsutils": "^3.21.0",
"typescript": "^4.5.2",
"zod": "^3.11.6"
},
"devDependencies": {
"@babel/core": "^7.17.5",
"@babel/preset-env": "^7.16.11",
"@babel/preset-typescript": "^7.16.7",
"@types/async": "^3.2.6",
"@types/fs-extra": "^9.0.9",
"@types/inquirer": "^8.1.3",
"@types/jest": "^26.0.20",
"@types/lodash": "^4.14.168",
"@types/lz-string": "^1.3.34",
"@types/node": "^12.7.11",
"@typescript-eslint/eslint-plugin": "^4.17.0",
"@typescript-eslint/parser": "^4.17.0",
"auto-changelog": "^2.2.1",
"babel-jest": "^27.5.1",
"codecov": "^3.8.1",
"eslint": "^7.22.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-prettier": "^3.3.1",
"husky": "^5.2.0",
"jest": "^27.5.1",
"pretty-quick": "^3.1.0",
"rimraf": "^3.0.2",
"ts-node": "^10.9.1"
},
"jest": {
"testEnvironment": "node",
"testMatch": [
"**/*.test.ts"
]
},
"prettier": {
"printWidth": 80,
"semi": true,
"trailingComma": "es5"
},
"oclif": {
"bin": "ts-to-zod"
}
}