-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 878 Bytes
/
Copy pathpackage.json
File metadata and controls
41 lines (41 loc) · 878 Bytes
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
{
"name": "zod-versioner",
"version": "1.1.3",
"description": "Type-safe data versioning library using Zod schemas",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/zeeeeby/zod-versioner.git"
},
"scripts": {
"build": "tsup src/index.ts --format cjs,esm --dts",
"test": "vitest run",
"test:watch": "vitest",
"lint": "eslint src",
"prepublishOnly": "npm run build"
},
"keywords": [
"zod",
"typescript",
"versioning",
"migration",
"schema"
],
"author": "",
"license": "MIT",
"peerDependencies": {
"zod": "^4.0.10"
},
"devDependencies": {
"@types/node": "^20.19.11",
"tsup": "^8.5.0",
"typescript": "^5.9.2",
"vitest": "^1.6.1",
"zod": "^4.0.10"
}
}