-
-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
31 lines (31 loc) · 1002 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
{
"name": "zod_utilz",
"version": "0.8.3",
"author": "JacobWeisenburger",
"description": "Framework agnostic utilities for Zod",
"license": "MIT",
"npm": "https://www.npmjs.com/package/zod_utilz",
"repository": "https://github.com/JacobWeisenburger/zod_utilz",
"homepage": "https://github.com/JacobWeisenburger/zod_utilz",
"module": "index.js",
"type": "module",
"keywords": [
"typescript"
],
"scripts": {
"test": "clear && bun test --watch",
"test.cmd": "cmd.exe /c start cmd /k bun run test",
"build": "clear && bun --watch run scripts/build.ts",
"publish": "clear && bun run scripts/publish.ts"
},
"peerDependencies": {
"typescript": "^5.0.0",
"zod": "^3.22.4"
},
"devDependencies": {
"@types/bun": "latest",
"bun-plugin-dts": "^0.2.1",
"dts-bundle-generator": "^9.3.1",
"@type-challenges/utils": "^0.1.1"
}
}