-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 862 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
{
"type": "module",
"private": true,
"packageManager": "[email protected]",
"license": "MIT",
"keywords": [
"astro",
"astro-integration",
"analytics",
"stats",
"tracking"
],
"engines": {
"node": "^18.18 || ^20.8 || ^22 || >=23"
},
"scripts": {
"build": "pnpm --filter=\"./packages/*\" --recursive run build",
"dev": "pnpm --filter=\"./packages/*\" --recursive run dev",
"lint": "eslint --max-warnings 0 ."
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"config": {
"commitizen": {
"path": "@commitlint/cz-commitlint"
}
},
"devDependencies": {
"@antfu/eslint-config": "3.12.1",
"@commitlint/config-conventional": "19.6.0",
"@commitlint/cz-commitlint": "19.6.1",
"commitizen": "4.3.1",
"eslint": "9.17.0",
"tsup": "8.3.5"
}
}