-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.56 KB
/
Copy pathpackage.json
File metadata and controls
67 lines (67 loc) · 1.56 KB
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
59
60
61
62
63
64
65
66
67
{
"name": "zod-temporal",
"version": "2.1.1",
"description": "Temporal integration for Zod validation library",
"author": "Ben Scholzen 'DASPRiD'",
"keywords": [
"Zod",
"temporal",
"validation",
"TypeScript"
],
"license": "BSD-2-Clause",
"repository": {
"type": "git",
"url": "git+https://github.com/DASPRiD/zod-temporal.git"
},
"type": "module",
"sideEffects": false,
"files": [
"dist/**/*"
],
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"./mini": {
"import": {
"types": "./dist/mini.d.ts",
"default": "./dist/mini.js"
}
}
},
"scripts": {
"build": "tsc -p tsconfig.build.json",
"test": "c8 tsx --test",
"test:ci": "c8 --reporter=lcov pnpm test",
"format": "biome format . --write",
"check": "biome check . --write"
},
"peerDependencies": {
"zod": "^4.1.0"
},
"peerDependenciesMeta": {
"@zod/mini": {
"optional": true
},
"zod": {
"optional": true
}
},
"devDependencies": {
"@biomejs/biome": "^2.5.1",
"@commitlint/cli": "^21.1.0",
"@commitlint/config-conventional": "^21.1.0",
"@tsconfig/node26": "^26.0.0",
"@types/node": "^26.0.1",
"c8": "^11.0.0",
"lefthook": "^2.1.9",
"tsx": "^4.22.4",
"typescript": "^6.0.3",
"zod": "^4.4.3"
},
"packageManager": "pnpm@11.9.0+sha512.bd682d5d03fe525ef7c9fd6780c6884d1e756ac4c9c9fe00c538782824310dcf90e3ddc4f53835f06dfaebd5085e41855e0bcbb3b60de2ac5bbab89e5036f03b"
}