-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 962 Bytes
/
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
{
"name": "@boywithkeyboard/bytes",
"version": "6.0.1",
"author": "Samuel Kopp (https://samuelkopp.de)",
"license": "Apache-2.0",
"description": "A disk unit conversion library for JavaScript.",
"funding": "https://github.com/sponsors/boywithkeyboard",
"repository": "boywithkeyboard/bytes",
"keywords": [
"bytes",
"conversion"
],
"main": "./build/index.js",
"module": "./build/index.js",
"types": "./build/index.d.ts",
"files": [
"build"
],
"exports": {
".": {
"import": {
"default": "./build/index.js",
"types": "./build/index.d.ts"
}
}
},
"scripts": {
"build": "rimraf build && tsc && esbuild index.ts --bundle --minify --format=esm --outfile=build/index.js",
"test": "npm run build && node --test"
},
"devDependencies": {
"esbuild": "^0.21.4",
"rimraf": "^5.0.7",
"typescript": "^5.4.5"
},
"engines": {
"node": ">=20"
},
"type": "module"
}