-
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) · 1.84 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 1.84 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": "@batou.dev/bytes",
"version": "0.6.0",
"description": "Work with byte sizes in JavaScript with native Intl support",
"license": "MIT",
"author": "Vincent Batoufflet <vincent@batou.dev>",
"packageManager": "bun@1.3.12",
"type": "module",
"keywords": [
"binary",
"bytes",
"convert",
"converter",
"decimal",
"filesize",
"format",
"formatter",
"human-readable",
"iec",
"intl",
"parse",
"parser",
"si",
"typescript"
],
"repository": {
"type": "git",
"url": "git+https://github.com/vbatoufflet/js-bytes.git"
},
"bugs": {
"url": "https://github.com/vbatoufflet/js-bytes/issues"
},
"homepage": "https://github.com/vbatoufflet/js-bytes#readme",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"./package.json": "./package.json"
},
"sideEffects": false,
"files": [
"CHANGELOG.md",
"LICENSE",
"README.md",
"dist"
],
"engines": {
"node": ">=22"
},
"scripts": {
"benchmark": "bun run build && bun scripts/benchmark.ts",
"build": "vite build && tsc --project tsconfig.build.json",
"docs": "typedoc",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"test": "vitest run",
"test:package": "bun scripts/test-package.ts",
"typecheck": "tsc --noEmit"
},
"devDependencies": {
"@batou.dev/eslint-config": "^0.2.1",
"@eslint/compat": "^2.0.5",
"@eslint/js": "^10.0.1",
"@stylistic/eslint-plugin": "^5.10.0",
"@types/node": "^22.19.17",
"eslint": "^10.2.1",
"eslint-plugin-perfectionist": "^5.9.0",
"tinybench": "^6.0.0",
"typedoc": "^0.28.19",
"typescript": "^6.0.3",
"typescript-eslint": "^8.59.0",
"vite": "^8.0.10",
"vitest": "^4.1.5"
}
}