-
-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
76 lines (76 loc) · 1.47 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
{
"name": "zod-to-ts",
"version": "1.2.0",
"type": "module",
"description": "generate TypeScript types from your Zod schema",
"repository": {
"type": "git",
"url": "https://github.com/sachinraja/zod-to-ts.git"
},
"homepage": "https://github.com/sachinraja/zod-to-ts#readme",
"bugs": {
"url": "https://github.com/sachinraja/zod-to-ts/issues"
},
"main": "dist/index.cjs",
"exports": {
"./package.json": "./package.json",
".": {
"import": "./dist/index.js",
"default": "./dist/index.cjs"
}
},
"types": "dist/index.d.ts",
"files": [
"dist"
],
"keywords": [
"zod",
"typescript",
"generator"
],
"scripts": {
"build": "tsup",
"watch": "tsup --watch --no-dts",
"format": "dprint fmt",
"lint": "run-p lint:*",
"lint:format": "dprint check",
"lint:types": "tsc",
"lint:js": "eslint .",
"prepublishOnly": "pnpm build",
"test": "vitest",
"example": "tsx test/example.ts"
},
"peerDependencies": {
"typescript": "^4.9.4 || ^5.0.2",
"zod": "^3"
},
"devDependencies": {
"@sachinraja/eslint-config": "0.3.0",
"@types/node": "20.5.0",
"dprint": "0.40.2",
"eslint": "8.47.0",
"npm-run-all": "4.1.5",
"tsup": "7.2.0",
"tsx": "3.12.7",
"typescript": "5.1.6",
"vite": "4.4.9",
"vitest": "0.34.1",
"zod": "3.22.1"
},
"sideEffects": false,
"tsup": {
"entry": [
"src/index.ts"
],
"format": [
"esm",
"cjs"
],
"dts": {
"resolve": true
},
"splitting": true,
"clean": true
},
"packageManager": "[email protected]"
}