forked from fabien0102/ts-to-zod
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 2.47 KB
/
package.json
File metadata and controls
91 lines (91 loc) · 2.47 KB
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
{
"name": "ts-to-zod",
"description": "Generate zod schemas from typescript types/interfaces",
"version": "5.1.0",
"homepage": "https://github.com/fabien0102/ts-to-zod",
"bugs": "https://github.com/fabien0102/ts-to-zod/issues",
"repository": "fabien0102/ts-to-zod",
"type": "module",
"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": "pnpm test:ci && rimraf lib && pnpm build",
"lint": "eslint . --ext=.js,.ts,.json --report-unused-disable-directives --max-warnings 0",
"lint:fix": "npm run lint -- --fix",
"typecheck": "tsc --noEmit --watch",
"test": "vitest",
"test:ci": "vitest --coverage && tsc --noEmit",
"gen:all": "node ./bin/run --all && pretty-quick",
"gen:example": "node ./bin/run --config example && pretty-quick",
"gen:config": "node ./bin/run --config config && pretty-quick",
"prepare": "husky"
},
"files": [
"LICENSE",
"README.md",
"ts-to-zod-logo.svg",
"lib",
"bin"
],
"license": "MIT",
"packageManager": "pnpm@10.17.0",
"dependencies": {
"@clack/prompts": "1.0.0-alpha.4",
"@oclif/core": "^4.5.4",
"@typescript/vfs": "^1.5.0",
"chokidar": "^4.0.3",
"listr2": "^9.0.4",
"slash": "^5.1.0",
"text-case": "^1.2.4",
"tslib": "^2.3.1",
"tsutils": "^3.21.0",
"typescript": "^5.2.2",
"zod": "^4.1.5"
},
"devDependencies": {
"@babel/core": "^7.23.2",
"@babel/preset-env": "^7.23.2",
"@babel/preset-typescript": "^7.23.2",
"@eslint/eslintrc": "^3.3.1",
"@eslint/js": "^9.36.0",
"@types/fs-extra": "^11.0.3",
"@types/inquirer": "^8.1.3",
"@types/node": "^24.5.2",
"@typescript-eslint/eslint-plugin": "^8.44.1",
"@typescript-eslint/parser": "^8.44.1",
"@vitest/coverage-v8": "3.2.4",
"auto-changelog": "^2.4.0",
"eslint": "^9.36.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.4",
"husky": "^9.1.7",
"prettier": "3.6.2",
"pretty-quick": "5.0.0-next.2",
"rimraf": "^5.0.5",
"ts-node": "^10.9.1",
"vitest": "^3.2.4"
},
"prettier": {
"printWidth": 80,
"semi": true,
"trailingComma": "es5"
},
"oclif": {
"bin": "ts-to-zod",
"commands": {
"strategy": "single",
"target": "./lib/cli"
}
}
}