-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
24 lines (24 loc) · 974 Bytes
/
Copy pathpackage.json
File metadata and controls
24 lines (24 loc) · 974 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": "agent-bar-usage",
"private": true,
"packageManager": "pnpm@10.33.0+sha512.10568bb4a6afb58c9eb3630da90cc9516417abebd3fabbe6739f0ae795728da1491e9db5a544c76ad8eb7570f5c4bb3d6c637b2cb41bfdcdb47fa823c8649319",
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"biome:check": "bun x biome check .",
"biome:fix": "bun x biome check --write .",
"build:shared": "cd packages/shared-contract && bun x tsc -p tsconfig.build.json",
"build:backend": "bun run build:shared && cd apps/backend && bun x tsc -p tsconfig.build.json",
"format": "bun x biome format --write .",
"lint": "bun run biome:check",
"test:backend": "cd apps/backend && bun run vitest run --config vitest.config.ts",
"test:gnome": "pnpm --filter gnome-extension test",
"install:ubuntu": "bash scripts/install-ubuntu.sh",
"verify:ubuntu": "bash scripts/verify-ubuntu-install.sh"
},
"devDependencies": {
"@biomejs/biome": "^2.4.9"
}
}