-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 2.06 KB
/
package.json
File metadata and controls
85 lines (85 loc) · 2.06 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "timezone-convert",
"type": "module",
"version": "1.3.6",
"packageManager": "pnpm@10.11.0",
"description": "Convert between timezone formats",
"author": "NamesMT <dangquoctrung123@gmail.com>",
"license": "MIT",
"funding": "https://github.com/sponsors/namesmt",
"homepage": "https://github.com/namesmt/timezone-convert#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/namesmt/timezone-convert.git"
},
"bugs": "https://github.com/namesmt/timezone-convert/issues",
"keywords": [
"cli",
"convert",
"iana",
"timezone",
"tzid",
"windows-timezone",
"windows"
],
"imports": {
"#src/*": "./src/*"
},
"exports": {
".": {
"types": "./dist/index.d.mts",
"import": "./dist/index.mjs"
}
},
"main": "./dist/index.mjs",
"bin": {
"timezone-convert": "./dist/cli-entry.mjs"
},
"source": "./src/index.ts",
"files": [
"dist"
],
"engines": {
"node": ">=22.14.0"
},
"scripts": {
"start": "tsx",
"watch": "tsx watch",
"dev": "NODE_ENV=dev pnpm run watch src/index.ts",
"lint": "eslint .",
"test": "vitest",
"test:types": "tsc --noEmit",
"check": "pnpm lint && pnpm test:types && vitest run --coverage",
"build": "obuild",
"prerelease": "pnpm run check",
"release": "pnpm dlx changelogen@latest --release --push --publish",
"prepare": "simple-git-hooks",
"prepublishOnly": "pnpm run build"
},
"devDependencies": {
"@antfu/eslint-config": "^4.13.2",
"@namesmt/utils": "^0.5.13",
"@types/node": "^22.15.24",
"@vitest/coverage-v8": "^3.1.4",
"citty": "^0.1.6",
"eslint": "^9.27.0",
"lint-staged": "^16.1.0",
"obuild": "^0.2.1",
"simple-git-hooks": "^2.13.0",
"tsx": "^4.19.4",
"typescript": "^5.8.3",
"vitest": "^3.1.4",
"windows-iana": "^5.1.0"
},
"pnpm": {
"overrides": {
"is-core-module": "npm:@nolyfill/is-core-module@^1.0.39"
}
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged"
},
"lint-staged": {
"*": "eslint --fix"
}
}