-
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) · 831 Bytes
/
package.json
File metadata and controls
43 lines (43 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
36
37
38
39
40
41
42
43
{
"private": true,
"type": "module",
"scripts": {
"prepare": "husky",
"bundle": "esbuild --bundle --minify --sourcemap --format=esm --platform=node --target=node24.13 --outdir=target/build",
"test": "xo && tsc && c8 node --test"
},
"engines": {
"node": ">=24.13"
},
"devDependencies": {
"@commitlint/cli": "20.4.2",
"@commitlint/config-conventional": "20.4.2",
"@sindresorhus/tsconfig": "8.1.0",
"@types/node": "24.11.0",
"c8": "11.0.0",
"esbuild": "0.27.3",
"husky": "9.1.7",
"lint-staged": "16.3.0",
"typescript": "5.9.3",
"xo": "1.2.3"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"lint-staged": {
"*.ts": "xo --fix"
},
"c8": {
"reporter": [
"text",
"html",
"lcov"
],
"extension": [
".ts"
],
"reportDir": "./target/coverage"
}
}