repo setup

This commit is contained in:
wass08
2026-01-14 09:03:07 +09:00
parent d5f4648c39
commit c9d84ea126
53 changed files with 609 additions and 747 deletions
+10 -5
View File
@@ -1,17 +1,22 @@
{
"name": "editor-v2",
"name": "editor",
"private": true,
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev",
"lint": "turbo run lint",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"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"
},
"devDependencies": {
"prettier": "^3.7.4",
"@biomejs/biome": "^2.3.11",
"turbo": "^2.7.4",
"typescript": "5.9.2"
"typescript": "5.9.2",
"ultracite": "^7.0.11"
},
"engines": {
"node": ">=18"