-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 1.64 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
{
"name": "@duplojs/zod-to-typescript",
"version": "0.0.0",
"author": "duplojs",
"contributors": [
{
"name": "mathcovax",
"url": "https://github.com/mathcovax"
},
{
"name": "ZeRiix",
"url": "https://github.com/ZeRiix"
}
],
"license": "MIT",
"type": "module",
"repository": "https://github.com/duplojs/zod-to-typescript",
"scripts": {
"build": "rollup --config && tsc-alias -p tsconfig.build.json",
"test:tu": "vitest --coverage",
"test:tu:watch": "vitest --coverage --watch",
"test:tu:update": "vitest --coverage --update",
"test:types": "npm run test:types:scripts",
"test:types:scripts": "tsc",
"test:lint": "eslint",
"test:lint:fix": "eslint --fix",
"prepare": "husky"
},
"types": "./dist/index.d.ts",
"exports": {
"default": {
"import": "./dist/index.mjs",
"require": "./dist/index.cjs",
"types": "./dist/index.d.ts"
}
},
"files": [
"dist",
"README.md"
],
"dependencies": {
"typescript": "5.5.4"
},
"peerDependencies": {
"zod": ">=3.23.8 <4.0.0"
},
"devDependencies": {
"@commitlint/cli": "19.4.0",
"@commitlint/config-conventional": "19.2.2",
"@duplojs/eslint": "0.2.3",
"@rollup/plugin-typescript": "^11.1.6",
"@types/node": "22.1.0",
"@vitest/coverage-istanbul": "2.0.5",
"eslint": "9.9.0",
"husky": "9.1.4",
"rollup": "^4.24.0",
"rollup-plugin-esbuild": "6.1.1",
"tsc-alias": "^1.8.10",
"tslib": "^2.6.3",
"vite-tsconfig-paths": "^5.0.1",
"vitest": "2.0.5"
},
"keywords": [
"zod",
"typescript",
"zod-to-ts",
"zod-typescript",
"typescript-generator",
"type-generation"
]
}