-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.46 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
{
"name": "zod-exporter",
"version": "1.0.1",
"description": "A zod types exporter.",
"keywords": [
"zod"
],
"homepage": "https://github.com/wosherco/zod-exporter",
"issues": "https://github.com/wosherco/zod-exporter/issues",
"author": "Pol (polv.dev)",
"license": "Apache-2.0",
"bin": "./dist/bin.js",
"main": "./dist/cjs/index.js",
"module": "./dist/es/index.mjs",
"types": "./dist/cjs/index.d.ts",
"exports": {
"import": {
"types": "./dist/es/index.d.mts",
"default": "./dist/es/index.mjs"
},
"require": {
"types": "./dist/cjs/index.d.ts",
"default": "./dist/cjs/index.js"
}
},
"scripts": {
"prebuild": "node -p \"'export const LIB_VERSION = ' + JSON.stringify(require('./package.json').version) + ';'\" > src/version.ts",
"build": "bunchee",
"dev": "bunchee -w --tsconfig tsconfig.json --no-clean",
"test": "echo \"Error: no test specified\" && exit 1"
},
"dependencies": {
"chokidar": "^4.0.1",
"commander": "^12.1.0",
"jiti": "^2.3.3",
"zod": "^3.23.8",
"zod-to-json-schema": "^3.23.3"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"devDependencies": {
"@changesets/cli": "^2.27.9",
"@types/node": "^22.7.8",
"bunchee": "^5.5.1",
"typescript": "^5.6.3"
},
"peerDependencies": {
"zod": "^3.23.8"
},
"packageManager": "[email protected]"
}