-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 994 Bytes
/
package.json
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
53
54
{
"private": true,
"type": "module",
"scripts": {
"prepare": "husky install",
"build": "esbuild --bundle --minify --sourcemap --format=esm --platform=node --target=node20.10 --outdir=target/build",
"test": "xo && tsc && c8 ava"
},
"engines": {
"node": ">=20.10"
},
"devDependencies": {
"@commitlint/cli": "18.4.3",
"@commitlint/config-conventional": "18.4.3",
"@sindresorhus/tsconfig": "5.0.0",
"@types/node": "20.10.4",
"ava": "6.0.1",
"c8": "8.0.1",
"esbuild": "0.19.9",
"husky": "8.0.3",
"lint-staged": "15.2.0",
"tsx": "4.6.2",
"typescript": "5.3.3",
"xo": "0.56.0"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"lint-staged": {
"*.ts": "xo --fix"
},
"ava": {
"extensions": {
"ts": "module"
},
"nodeArguments": [
"--import=tsx/esm"
],
"workerThreads": false
},
"c8": {
"reporter": [
"text",
"html",
"lcov"
],
"extension": [
".ts"
],
"reportDir": "./target/coverage"
}
}