-
-
Notifications
You must be signed in to change notification settings - Fork 35
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 698 Bytes
/
package.json
File metadata and controls
26 lines (26 loc) · 698 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
{
"name": "tinte",
"private": true,
"workspaces": [
"packages/*",
"apps/*"
],
"scripts": {
"dev": "bun run --filter @tinte/web dev",
"dev:ray": "bun run --filter @tinte/ray dev",
"build": "bun run --filter @tinte/web build",
"lint": "biome check",
"format": "biome format --write",
"check:staged": "biome check --write --staged",
"validate:commit-msg": "node scripts/validate-commit-msg.mjs",
"prepare": "simple-git-hooks"
},
"simple-git-hooks": {
"pre-commit": "bun run check:staged",
"commit-msg": "bun run validate:commit-msg \"$1\""
},
"devDependencies": {
"@biomejs/biome": "2.2.0",
"simple-git-hooks": "^2.13.1"
}
}