-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
40 lines (40 loc) · 850 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
{
"name": "verzod",
"version": "0.2.3",
"license": "MIT",
"description": "A simple versioning and migration library based on Zod schemas",
"author": "Andrew Bastin ([email protected])",
"homepage": "https://github.com/AndrewBastin/verzod",
"bugs": {
"url": "https://github.com/AndrewBastin/verzod/issues"
},
"keywords": [
"versioning",
"migration",
"zod"
],
"engines": {
"node": ">=16"
},
"type": "module",
"files": [
"dist"
],
"exports": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"test": "vitest --run",
"test:watch": "vitest",
"build": "tsup",
"prepublish": "tsup"
},
"peerDependencies": {
"zod": "^3.22.0"
},
"devDependencies": {
"jiti": "^1.21.0",
"tsup": "^8.0.2",
"typescript": "^5.4.2",
"vitest": "^1.4.0"
}
}