-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 973 Bytes
/
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
{
"name": "@techery/zod-dynamic-schema",
"version": "0.1.1",
"description": "Type-safe factory functions for creating dynamic Zod schemas with TypeScript inference",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc",
"test": "echo \"No tests yet\" && exit 0",
"prepublishOnly": "npm run build"
},
"keywords": [
"zod",
"schema",
"dynamic",
"typescript"
],
"author": "",
"license": "MIT",
"devDependencies": {
"@types/node": "^22.10.5",
"typescript": "^5.7.3"
},
"peerDependencies": {
"zod": "3.*"
},
"repository": {
"type": "git",
"url": "git+https://github.com/techery/zod-dynamic-schema.git"
},
"bugs": {
"url": "https://github.com/techery/zod-dynamic-schema/issues"
},
"homepage": "https://github.com/techery/zod-dynamic-schema#readme",
"publishConfig": {
"access": "public"
}
}