-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 831 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 831 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
30
31
32
33
34
35
{
"name": "binparse",
"version": "2.1.0",
"repository": {
"type": "git",
"url": "https://github.com/blacha/binparse.git"
},
"license": "MIT",
"type": "module",
"main": "./build/src/index.js",
"types": "./build/src/index.d.ts",
"scripts": {
"build": "tsc --pretty",
"build-watch": "tsc --pretty --watch",
"lint": "oxlint . --type-aware --fix && oxfmt . --write",
"check": "oxlint . --type-aware && oxfmt . --check",
"test": "node --test \"build/**/*.test.js\""
},
"publishConfig": {
"access": "public"
},
"engines": {
"node": "^12.20.0 || ^14.13.1 || >=16.0.0"
},
"files": [
"build/src"
],
"devDependencies": {
"@types/node": "^18.11.9",
"oxfmt": "^0.41.0",
"oxlint": "^1.56.0",
"oxlint-tsgolint": "^0.17.2",
"typescript": "^6.0.2"
}
}