-
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
/
Copy pathpackage.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.19 --outdir=target/build",
"test": "xo && tsc && c8 node --test"
},
"engines": {
"node": ">=24.19"
},
"devDependencies": {
"@commitlint/cli": "21.2.1",
"@commitlint/config-conventional": "21.2.0",
"@sindresorhus/tsconfig": "8.1.0",
"@types/node": "24.13.3",
"c8": "12.0.0",
"esbuild": "0.28.1",
"husky": "9.1.7",
"lint-staged": "17.3.0",
"typescript": "6.0.3",
"xo": "4.0.0"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"lint-staged": {
"*.ts": "xo --fix"
},
"c8": {
"reporter": [
"text",
"html",
"lcov"
],
"extension": [
".ts"
],
"reportDir": "./target/coverage"
}
}