-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.24 KB
/
Copy pathpackage.json
File metadata and controls
52 lines (52 loc) · 1.24 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
{
"name": "binary-util",
"description": "A utility library for working with binary data.",
"type": "module",
"version": "2.0.5",
"author": "BeeeQueue <adam@haglund.dev>",
"repository": {
"type": "github",
"url": "https://github.com/beeequeue/binary-util"
},
"license": "MIT",
"packageManager": "pnpm@11.11.0",
"engines": {
"node": ">=20.19"
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,json,json5,yaml,yml,css,scss,md}": [
"oxfmt --no-error-on-unmatched-pattern"
]
},
"files": [
"dist"
],
"exports": {
"default": "./dist/index.mjs"
},
"scripts": {
"build": "tsdown",
"lint": "oxlint",
"test": "vitest"
},
"devDependencies": {
"@changesets/changelog-github": "1.0.0-next.6",
"@changesets/cli": "3.0.0-next.8",
"@e18e/eslint-plugin": "0.5.1",
"@tsconfig/node24": "24.0.4",
"@tsconfig/strictest": "2.0.8",
"@types/node": "26.1.1",
"@vitest/coverage-v8": "5.0.0-beta.6",
"lint-staged": "17.0.8",
"oxfmt": "0.58.0",
"oxlint": "1.73.0",
"oxlint-tsgolint": "0.24.0",
"publint": "0.3.21",
"simple-git-hooks": "2.13.1",
"tsdown": "0.22.7",
"vitest": "5.0.0-beta.6"
}
}