-
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.61 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.61 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
{
"name": "enhanced-ms",
"version": "4.2.0",
"packageManager": "pnpm@9.15.4",
"type": "module",
"description": "Convert milliseconds to human-readable duration strings and vice versa",
"license": "MIT",
"keywords": [
"humanize",
"duration",
"ms",
"time",
"readable",
"format",
"parse",
"pretty",
"print"
],
"homepage": "https://github.com/apteryxxyz/enhanced-ms#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/apteryxxyz/enhanced-ms.git"
},
"bugs": {
"url": "https://github.com/apteryxxyz/enhanced-ms/issues"
},
"files": ["dist"],
"main": "./dist/index.cjs",
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.cjs",
"import": "./dist/index.js"
}
},
"scripts": {
"lint": "biome ci .",
"format": "biome check . --write",
"check": "tsc --noEmit",
"build": "tsup",
"dev": "tsup --watch",
"test": "vitest --run",
"prepare": "husky",
"change": "changeset",
"release:version": "changeset version && biome format package.json --write",
"release:snapshot:version": "changeset version --snapshot beta && biome format package.json --write",
"release:publish": "pnpm build && changeset publish",
"release:snapshot:publish": "pnpm build && changeset publish --tag beta --no-git-tag"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@changesets/changelog-git": "^0.2.0",
"@changesets/cli": "^2.27.12",
"husky": "^9.1.7",
"tsup": "^8.3.6",
"typescript": "^5.7.3",
"vite-tsconfig-paths": "^5.1.4",
"vitest": "^3.0.4"
}
}