-
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.64 KB
/
Copy pathpackage.json
File metadata and controls
69 lines (69 loc) · 1.64 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-timezone-validation",
"version": "2.0.0",
"description": "Zod schemas for validating timezone strings, including non-canonical names.",
"author": "Roman Kozodoi",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/Roman86/zod-timezone-validation.git"
},
"homepage": "https://github.com/Roman86/zod-timezone-validation#readme",
"bugs": {
"url": "https://github.com/Roman86/zod-timezone-validation/issues"
},
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"sideEffects": false,
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"files": [
"dist"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "tsup src/index.ts --format cjs,esm --dts --minify --clean",
"test": "jest",
"lint": "biome lint ./src",
"format": "biome format --write ./src"
},
"keywords": [
"IANA timezone",
"IANA timezone database",
"tz database",
"Zod schema",
"timezone validation",
"canonical timezone names",
"non-canonical timezone names",
"data validation",
"JavaScript",
"TypeScript",
"date-time handling"
],
"peerDependencies": {
"zod": "^4.0.0"
},
"devDependencies": {
"@biomejs/biome": "latest",
"@types/jest": "^29.5.12",
"jest": "^29.7.0",
"jest-util": "^30.3.0",
"ts-jest": "^29.2.3",
"tsup": "^8.5.0",
"typescript": "^5.9.3",
"zod": "^4.0.0"
},
"overrides": {
"js-yaml": "^4.1.1",
"glob": "^11.1.0"
}
}