-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 1.05 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
34
35
36
{
"name": "workspace",
"version": "0.0.1",
"private": true,
"packageManager": "pnpm@9.15.2",
"license": "MIT",
"engineStrict": true,
"engines": {
"node": ">=20"
},
"scripts": {
"commitlint": "pnpm dlx commitlint --config .config/commitlint.ts --edit",
"dev": "pnpm --recursive dev",
"lint:fix": "pnpm lint --fix",
"lint": "eslint --cache --flag unstable_ts_config --config .config/eslint.ts .",
"postinstall": "simple-git-hooks",
"typecheck": "pnpm run --recursive typecheck",
"upgrade": "pnpm dlx taze major -iwr && SKIP_INSTALL_SIMPLE_GIT_HOOKS=1 pnpm dedupe"
},
"devDependencies": {
"@antfu/eslint-config": "catalog:",
"@commitlint/config-conventional": "catalog:",
"@commitlint/prompt-cli": "catalog:",
"conventional-changelog-atom": "catalog:",
"eslint": "catalog:",
"lint-staged": "catalog:",
"simple-git-hooks": "catalog:"
},
"simple-git-hooks": {
"commit-msg": "pnpm commitlint ${1}",
"pre-commit": "pnpm lint-staged"
},
"lint-staged": {
"*": "pnpm lint:fix"
}
}