-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 977 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
41
42
{
"name": "@shie1/bytes",
"version": "1.1.1",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"private": false,
"scripts": {
"build": "tsup"
},
"author": "Sonkoly Bence <shibibence@gmail.com>",
"license": "MIT",
"description": "A simple JavaScript/TypeScript module for formatting byte values, supporting both binary (IEC) and decimal (SI) units.",
"type": "module",
"keywords": [
"byte",
"bytes",
"utility",
"parse",
"parser",
"convert",
"converter",
"format",
"formatter"
],
"bugs": {
"url": "https://github.com/shie1/bytes/issues",
"email": "shibibence@gmail.com"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"homepage": "https://github.com/shie1/bytes#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/shie1/bytes.git"
},
"devDependencies": {
"@types/node": "^22.9.0",
"tsup": "^8.3.5"
}
}