Files
editor/package.json
T
2026-01-16 09:46:19 +09:00

36 lines
774 B
JSON

{
"name": "editor",
"private": true,
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev",
"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"
},
"dependencies": {
"@react-three/drei": "^10",
"@react-three/fiber": "^9",
"three": "^0.182.0",
"zustand": "^5.0.10"
},
"devDependencies": {
"@biomejs/biome": "^2.3.11",
"turbo": "^2.7.4",
"typescript": "5.9.2",
"ultracite": "^7.0.11"
},
"engines": {
"node": ">=18"
},
"packageManager": "bun@1.3.0",
"workspaces": [
"apps/*",
"packages/*"
]
}