-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.17 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 2.17 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
{
"name": "ts-humanize",
"version": "1.0.2",
"description": "A TypeScript library for humanizing dates, numbers, and other values.",
"keywords": [
"humanize",
"typescript",
"dates",
"numbers",
"library",
"bytes"
],
"main": "build/index.js",
"types": "index.d.ts",
"type": "module",
"exports": {
".": {
"import": "./build/index.js",
"types": "./build.index.d.ts"
},
"./formatting": {
"import": "./build/formatting/index.js",
"types": "./build/formatting/index.d.ts"
},
"./english": {
"import": "./build/english/index.js",
"types": "./build/english/index.d.ts"
},
"./time": {
"import": "./build/time/index.js",
"types": "./build/time/index.d.ts"
},
"./SI-Units": {
"import": "./build/SI-Units/index.js",
"types": "./build/SI-Units/index.d.ts"
},
"./ordinals": {
"import": "./build/ordinals/index.js",
"types": "./build/ordinals/index.d.ts"
},
"./bytes": {
"import": "./build/bytes/index.js",
"types": "./build/bytes/index.d.ts"
}
},
"files": [
"build"
],
"scripts": {
"lint": "bunx tsc --noEmit",
"compile": "bun scripts/build.ts",
"generate:types": "bunx tsc --p tsconfig.build.json",
"generate:docs": "bunx typedoc",
"bump": "bun pm version",
"build": "bun compile && bun generate:types && bun generate:docs",
"push": "git push --follow-tags"
},
"repository": {
"type": "github",
"url": "https://github.com/Shiv-SB/ts-humanize"
},
"homepage": "https://github.com/shiv-SB/ts-humanize",
"bugs": {
"url": "https://github.com/shiv-SB/ts-humanize/issues"
},
"license": "MIT",
"devDependencies": {
"@types/bun": "1.2.22",
"typedoc": "^0.28.13",
"typedoc-plugin-markdown": "^4.9.0"
},
"peerDependencies": {
"typescript": "^5.9.2"
},
"dependencies": {
"dayjs": "^1.11.18"
}
}