-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 748 Bytes
/
Copy pathpackage.json
File metadata and controls
29 lines (29 loc) · 748 Bytes
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
{
"name": "unpretty-bytes",
"version": "1.0.0",
"private": true,
"main": "dist/index.js",
"type": "module",
"scripts": {
"build": "tsc",
"ci": "npm run build && npm run check-format && npm run test",
"test": "tsx --test src/**/*.test.ts",
"format": "prettier --write .",
"check-format": "prettier --check ."
},
"keywords": [],
"homepage": "https://github.com/rivea0/unpretty-bytes",
"author": "Eda",
"license": "MIT",
"description": "Convert a human-readable string to bytes: 1 GiB → 1073741824",
"repository": "rivea0/unpretty-bytes",
"files": [
"dist"
],
"devDependencies": {
"@types/node": "^22.10.6",
"prettier": "^3.4.2",
"tsx": "^4.19.2",
"typescript": "^5.7.3"
}
}