- Add dynamic OG image generation endpoint (/og) adapted from monorepo - Replace favicon with monorepo version, remove unused icon.svg - Add seo.ts config, robots.ts, sitemap.ts for better search indexing - Add per-page metadata (editor, viewer, settings, profile, community) - Remove stale package-lock.json that caused ENOWORKSPACES errors with Next.js - Add OG fonts (Geist Regular, Plus Jakarta Sans SemiBold) Co-authored-by: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
53 lines
1.8 KiB
JSON
53 lines
1.8 KiB
JSON
{
|
|
"name": "editor",
|
|
"private": true,
|
|
"scripts": {
|
|
"build": "turbo run build",
|
|
"dev": "set -a && . ./.env 2>/dev/null; set +a; turbo run dev --env-mode=loose",
|
|
"lint": "biome lint",
|
|
"lint:fix": "biome lint --write",
|
|
"format": "biome format --write",
|
|
"format:check": "biome format",
|
|
"check": "biome check",
|
|
"check:fix": "biome check --write",
|
|
"check-types": "turbo run check-types",
|
|
"kill": "lsof -ti:3002 | xargs kill -9 2>/dev/null || echo 'No processes found on port 3002'",
|
|
"db:generate": "bun run --cwd packages/db db:generate",
|
|
"db:migrate": "bun run --cwd packages/db db:migrate",
|
|
"db:push": "bun run --cwd packages/db db:push",
|
|
"db:studio": "bun run --cwd packages/db db:studio",
|
|
"db:start": "supabase start",
|
|
"db:stop": "supabase stop",
|
|
"db:reset": "supabase db reset",
|
|
"db:status": "supabase status",
|
|
"release": "gh workflow run release.yml -f package=both -f bump=patch",
|
|
"release:viewer": "gh workflow run release.yml -f package=viewer -f bump=patch",
|
|
"release:core": "gh workflow run release.yml -f package=core -f bump=patch",
|
|
"release:minor": "gh workflow run release.yml -f package=both -f bump=minor",
|
|
"release:major": "gh workflow run release.yml -f package=both -f bump=major"
|
|
},
|
|
"dependencies": {
|
|
"@react-three/drei": "^10.7.7",
|
|
"@react-three/fiber": "^9.5.0",
|
|
"three": "^0.182.0",
|
|
"three-bvh-csg": "^0.0.17",
|
|
"three-mesh-bvh": "^0.9.8",
|
|
"zustand": "^5.0.11"
|
|
},
|
|
"devDependencies": {
|
|
"@biomejs/biome": "^2.4.2",
|
|
"supabase": "2.75.3",
|
|
"turbo": "^2.8.10",
|
|
"typescript": "5.9.2",
|
|
"ultracite": "^7.2.3"
|
|
},
|
|
"engines": {
|
|
"node": ">=18"
|
|
},
|
|
"packageManager": "bun@1.3.0",
|
|
"workspaces": [
|
|
"apps/*",
|
|
"packages/*"
|
|
]
|
|
}
|