-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
33 lines (33 loc) · 1.04 KB
/
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
{
"devDependencies": {
"@commitlint/cli": "19.6.1",
"@commitlint/config-conventional": "19.6.0",
"@semantic-release/changelog": "6.0.3",
"@semantic-release/commit-analyzer": "13.0.1",
"@semantic-release/git": "10.0.1",
"@semantic-release/github": "11.0.1",
"@semantic-release/npm": "12.0.1",
"@semantic-release/release-notes-generator": "14.0.3",
"conventional-changelog-conventionalcommits": "8.0.0",
"husky": "9.1.7",
"lint-staged": "15.3.0",
"semantic-release": "24.2.1"
},
"engines": {
"node": "20"
},
"packageManager": "pnpm@9.15.4",
"private": true,
"scripts": {
"build": "pnpm --dir src run build",
"build:node": "pnpm --dir src run build:node",
"build:static": "pnpm --dir src run build:static",
"dev": "pnpm --dir src run dev",
"generate": "pnpm --dir src run generate",
"prepare": "husky",
"start:dev": "pnpm --dir src run start:dev",
"start:node": "pnpm --dir src run start:node",
"start:static": "pnpm --dir src run start:static"
},
"type": "module"
}