-
-
Notifications
You must be signed in to change notification settings - Fork 38
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 1.01 KB
/
Copy pathpackage.json
File metadata and controls
29 lines (29 loc) · 1.01 KB
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
{
"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",
"generate:design": "bun run generate:artifacts && bun run generate:plugin",
"generate:artifacts": "bun packages/cli/src/cli.ts build --config ./tinte.config.json --out ./apps/web/public/design",
"generate:plugin": "bun packages/cli/src/cli.ts build --plugin --config ./tinte.config.json --out ./apps/web/public/plugin",
"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"
}
}