Initial commit from create-turbo

This commit is contained in:
wass08
2026-01-14 07:26:59 +09:00
commit d5f4648c39
61 changed files with 2356 additions and 0 deletions
+24
View File
@@ -0,0 +1,24 @@
{
"name": "editor-v2",
"private": true,
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev",
"lint": "turbo run lint",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"check-types": "turbo run check-types"
},
"devDependencies": {
"prettier": "^3.7.4",
"turbo": "^2.7.4",
"typescript": "5.9.2"
},
"engines": {
"node": ">=18"
},
"packageManager": "bun@1.3.0",
"workspaces": [
"apps/*",
"packages/*"
]
}