-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.04 KB
/
Copy pathpackage.json
File metadata and controls
43 lines (43 loc) · 1.04 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
{
"name": "lib",
"version": "1.0.0",
"description": "",
"license": "MIT",
"files": [
"dist"
],
"type": "module",
"main": "./dist/index.js",
"exports": {
".": "./dist/index.js"
},
"scripts": {
"build": "bun build src/index.ts --outdir dist --target node --packages external",
"check:dist": "bun run scripts/check-dist.ts",
"format": "oxfmt && oxlint --fix",
"lint": "oxfmt --check && oxlint .",
"prepare": "husky",
"prepublishOnly": "bun run typecheck && bun test && bun run build && bun run check:dist",
"release": "release-it",
"typecheck": "tsc",
"verify": "bun run lint && bun run typecheck && bun test && bun run build && bun run check:dist"
},
"devDependencies": {
"@types/bun": "latest",
"husky": "^9",
"lint-staged": "^16",
"oxfmt": "^0.43.0",
"oxlint": "^1.58.0",
"release-it": "^19",
"typescript": "^6.0.0"
},
"lint-staged": {
"*": [
"oxfmt --no-error-on-unmatched-pattern",
"oxlint --fix"
]
},
"engines": {
"node": ">=24"
}
}