-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
24 lines (24 loc) · 825 Bytes
/
package.json
File metadata and controls
24 lines (24 loc) · 825 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
{
"name": "main",
"version": "1.0.0",
"workspaces": [
"packages/*"
],
"scripts": {
"build:wobe": "bun --filter './packages/wobe' build",
"ci": "bun build:wobe && bun --filter './packages/*' ci",
"format": "bun --filter './packages/*' format && oxfmt --write ./*.json",
"lint": "bun --filter './packages/*' lint",
"pre:commit": "oxlint ./packages && oxfmt --write ./packages",
"squash": "base_branch=${1:-main} && git fetch origin $base_branch && branch=$(git branch --show-current) && git checkout $branch && git reset $(git merge-base origin/$base_branch $branch) && git add -A"
},
"devDependencies": {
"@commitlint/cli": "19.3.0",
"@commitlint/config-conventional": "19.2.2",
"@types/bun": "1.3.2",
"lefthook": "1.6.10",
"oxfmt": "0.28.0",
"oxlint": "1.43.0",
"typescript": "5.9.3"
}
}