{ "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'", "clean:cache": "rm -rf apps/*/.next apps/*/.swc apps/*/.turbo packages/*/.turbo tooling/*/.turbo .turbo node_modules/.cache", "restart": "bun kill && bun clean:cache && bun dev", "release": "gh workflow run release.yml -f package=all -f bump=patch", "release:beta": "gh workflow run release.yml -f package=all -f bump=beta", "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:editor": "gh workflow run release.yml -f package=editor -f bump=patch", "release:nodes": "gh workflow run release.yml -f package=nodes -f bump=patch", "release:mcp": "gh workflow run release.yml -f package=mcp -f bump=patch", "release:minor": "gh workflow run release.yml -f package=all -f bump=minor", "release:major": "gh workflow run release.yml -f package=all -f bump=major" }, "devDependencies": { "@biomejs/biome": "^2.4.16", "@typescript/native-preview": "7.0.0-dev.20260624.1", "dotenv-cli": "^11.0.0", "turbo": "^2.9.17", "typescript": "6.0.3", "ultracite": "^7.8.2" }, "engines": { "node": ">=18" }, "packageManager": "bun@1.3.0", "overrides": { "@types/react": "19.2.17", "@types/react-dom": "19.2.3", "@types/three": "0.184.1", "react-grab": "0.1.50", "three": "0.185.1" }, "optionalDependencies": { "@tailwindcss/oxide-darwin-arm64": "4.3.0", "@tailwindcss/oxide-darwin-x64": "4.3.0", "@tailwindcss/oxide-linux-arm64-gnu": "4.3.0", "@tailwindcss/oxide-linux-x64-gnu": "4.3.0", "lightningcss-darwin-arm64": "1.32.0", "lightningcss-darwin-x64": "1.32.0", "lightningcss-linux-arm64-gnu": "1.32.0", "lightningcss-linux-x64-gnu": "1.32.0" }, "workspaces": [ "apps/*", "packages/*", "tooling/*" ] }