-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.66 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 1.66 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
68
69
{
"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 --import temporal-polyfill/global --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.2.2",
"@commitlint/cli": "^19.8.1",
"@commitlint/config-conventional": "^19.8.1",
"@tsconfig/node22": "^22.0.2",
"@types/node": "^24.3.0",
"c8": "^10.1.3",
"lefthook": "^1.12.3",
"temporal-polyfill": "^0.3.0",
"temporal-spec": "^0.3.0",
"tsx": "^4.20.5",
"typescript": "^5.9.2",
"zod": "^4.1.5"
},
"packageManager": "[email protected]+sha512.f0dda8580f0ee9481c5c79a1d927b9164f2c478e90992ad268bbb2465a736984391d6333d2c327913578b2804af33474ca554ba29c04a8b13060a717675ae3ac"
}