-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
124 lines (124 loc) · 3.05 KB
/
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
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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
{
"name": "@date-fns/tz",
"version": "1.2.0",
"description": "date-fns timezone utils",
"type": "module",
"main": "index.cjs",
"module": "index.js",
"exports": {
"./package.json": "./package.json",
".": {
"require": {
"types": "./index.d.cts",
"default": "./index.cjs"
},
"import": {
"types": "./index.d.ts",
"default": "./index.js"
}
},
"./tzOffset": {
"require": {
"types": "./tzOffset/index.d.cts",
"default": "./tzOffset/index.cjs"
},
"import": {
"types": "./tzOffset/index.d.ts",
"default": "./tzOffset/index.js"
}
},
"./tzScan": {
"require": {
"types": "./tzScan/index.d.cts",
"default": "./tzScan/index.cjs"
},
"import": {
"types": "./tzScan/index.d.ts",
"default": "./tzScan/index.js"
}
},
"./date": {
"require": {
"types": "./date/index.d.cts",
"default": "./date/index.cjs"
},
"import": {
"types": "./date/index.d.ts",
"default": "./date/index.js"
}
},
"./date/mini": {
"require": {
"types": "./date/mini.d.cts",
"default": "./date/mini.cjs"
},
"import": {
"types": "./date/mini.d.ts",
"default": "./date/mini.js"
}
},
"./tz": {
"require": {
"types": "./tz/index.d.cts",
"default": "./tz/index.cjs"
},
"import": {
"types": "./tz/index.d.ts",
"default": "./tz/index.js"
}
},
"./constants": {
"require": {
"types": "./constants/index.d.cts",
"default": "./constants/index.cjs"
},
"import": {
"types": "./constants/index.d.ts",
"default": "./constants/index.js"
}
}
},
"scripts": {
"test": "vitest run"
},
"repository": {
"type": "git",
"url": "git+https://github.com/date-fns/tz.git"
},
"keywords": [
"date-fns",
"tz",
"timezones",
"date",
"time",
"datetime"
],
"author": "Sasha Koss <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/date-fns/tz/issues"
},
"homepage": "https://github.com/date-fns/tz#readme",
"devDependencies": {
"@arethetypeswrong/cli": "^0.16.2",
"@babel/cli": "^7.24.1",
"@babel/core": "^7.24.4",
"@babel/plugin-transform-modules-commonjs": "^7.24.1",
"@babel/preset-env": "^7.24.4",
"@babel/preset-typescript": "^7.24.1",
"@parcel/watcher": "^2.4.1",
"@sinonjs/fake-timers": "^11.2.2",
"@swc/core": "^1.4.13",
"@types/sinonjs__fake-timers": "^8.1.5",
"babel-plugin-replace-import-extension": "^1.1.4",
"bytes-iec": "^3.1.1",
"date-fns": "4.0.0-alpha.1",
"glob": "^10.3.12",
"minimatch": "^10.0.1",
"picocolors": "^1.0.0",
"tinybench": "^2.7.0",
"typescript": "^5.5.4",
"vitest": "^1.4.0"
},
"packageManager": "[email protected]+sha512.73a29afa36a0d092ece5271de5177ecbf8318d454ecd701343131b8ebc0c1a91c487da46ab77c8e596d6acf1461e3594ced4becedf8921b074fbd8653ed7051c"
}