-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
61 lines (61 loc) · 1.34 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
{
"name": "world-clockify",
"version": "1.6.5",
"scripts": {
"build": "tsup",
"test": "vitest run",
"format": "prettier --write .",
"check-format": "prettier --check .",
"ci": "npm run check-format"
},
"files": [
"dist",
"src",
"LICENSE",
"REDME.md",
"package.json"
],
"keywords": [
"world",
"clockify",
"time",
"zone",
"currency",
"converter"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
"./package.json": "./package.json",
".": {
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"homepage": "https://shivam-sharma7.github.io/world-clockify/#/",
"repository": {
"type": "git",
"url": "git+https://github.com/shivam-sharma7/world-clockify.git"
},
"bugs": {
"url": "https://github.com/shivam-sharma7/world-clockify/issues"
},
"author": "Shivam Sharma <[email protected]>",
"license": "MIT",
"description": "world-clockify is a utility package that handles complex timezone-based date operations.",
"type": "module",
"devDependencies": {
"@types/node": "^22.7.5",
"prettier": "^3.3.3",
"tsup": "^8.3.0",
"typescript": "^5.6.3",
"vitest": "^2.1.2"
},
"dependencies": {
"@types/luxon": "^3.4.2",
"luxon": "^3.5.0"
},
"engines": {
"node": ">=18.0.0"
}
}