-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
22 lines (22 loc) · 782 Bytes
/
package.json
File metadata and controls
22 lines (22 loc) · 782 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{
"name": "@shunkakinoki/dotagents",
"scripts": {
"check": "bun run ruler:check && bun run biome:check",
"lint": "bun run ruler:apply && bun run check && bun run format",
"format": "bun run biome:format",
"biome:check": "bun biome check --write .",
"biome:format": "bun biome format . --write",
"ruler:apply": "ruler apply",
"ruler:check": "ruler apply --no-gitignore && test -z \"$(git status --porcelain)\" || true",
"lefthook:install": "lefthook install",
"lefthook:uninstall": "lefthook uninstall",
"lefthook:run": "lefthook run",
"prepare": "make ruler-prepare"
},
"devDependencies": {
"@biomejs/biome": "2.3.11",
"@intellectronica/ruler": "^0.3.23",
"lefthook": "^2.0.15"
},
"packageManager": "bun@1.2.22"
}