-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 730 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 730 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
{
"workspaces": [
"plugins/*"
],
"type": "module",
"scripts": {
"build": "lune ci",
"check": "pnpm run fmt:check && pnpm run lint && pnpm run build",
"fmt": "oxfmt",
"fmt:check": "oxfmt --check",
"lint": "oxlint",
"lint:fix": "oxlint --fix",
"lint:github": "oxlint --format=github",
"prepare": "husky",
"typecheck": "tsc --noEmit"
},
"devDependencies": {
"@uwu/lune": "^1.6.2",
"@uwu/shelter-defs": "^1.4.1",
"husky": "^9.1.7",
"lint-staged": "^17.0.4",
"oxfmt": "^0.48.0",
"oxlint": "^1.63.0",
"typescript": "^6.0.3"
},
"lint-staged": {
"*": "oxfmt --no-error-on-unmatched-pattern && oxlint",
"*.{ts,tsx,js,jsx,mjs,cjs}": "oxlint"
}
}