this repo has no description
1{
2 "name": "sitebase",
3 "private": true,
4 "workspaces": [
5 "packages/*"
6 ],
7 "devDependencies": {
8 "@biomejs/biome": "^2.3.11",
9 "@types/node": "^25.0.9",
10 "bun-types": "^1.3.6",
11 "typescript": "^5"
12 },
13 "scripts": {
14 "check": "bun run typecheck && bun run lint",
15 "format": "biome format packages/ --write",
16 "format:check": "biome format packages/",
17 "lint": "biome lint packages/ --write",
18 "lint:check": "biome lint packages/",
19 "typecheck": "bun run --workspaces typecheck",
20 "import": "bun run scripts/import-content.ts",
21 "build:cli": "bun run --filter ./packages/cli build"
22 },
23 "dependencies": {
24 "@atproto/api": "^0.18.16"
25 }
26}