-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.05 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.05 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
{
"name": "comnumbers",
"version": "1.1.4",
"description": "A tiny, zero-dependency utility to convert human-readable time strings to milliseconds and back.",
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"unpkg": "dist/index.js",
"exports": {
"import": "./dist/index.js",
"require": "./dist/index.js",
"default": "./dist/index.js"
},
"type": "module",
"files": [
"dist/index.js",
"dist/index.d.ts",
"README.md"
],
"scripts": {
"build": "swc src/index.js -o dist/index.js --config-file .swcrc.json",
"test": "node test.js",
"format": "prettier --write .",
"prepare": "husky",
"lint": "oxlint",
"lint:fix": "oxlint --fix"
},
"keywords": [
"utility",
"numbers",
"time",
"ms",
"convert",
"humanize"
],
"author": "oopsio",
"license": "MIT",
"devDependencies": {
"@swc/cli": "^0.8.0",
"@swc/core": "^1.15.21",
"husky": "^9.1.7",
"ms": "^2.1.3",
"oxlint": "^1.57.0"
},
"trustedDependencies": [
"@swc/core"
]
}