GhiVideo 소스 복제 — v4 작업 시작 기준

기존 GhiVideo 저장소 HEAD의 트래킹 소스 362개 파일을 복제.
(node_modules·storage·빌드 산출물·대용량 미디어는 .gitignore 규칙대로 제외)

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
This commit is contained in:
2026-07-09 14:32:51 +09:00
co-authored by Claude Fable 5
commit d38b842e8d
362 changed files with 46358 additions and 0 deletions
+31
View File
@@ -0,0 +1,31 @@
{
"name": "@abcvideo/server",
"version": "1.0.0",
"private": true,
"scripts": {
"dev": "tsx watch src/app.ts",
"build": "tsc",
"start": "node dist/server/src/app.js"
},
"dependencies": {
"@abcvideo/shared": "*",
"@tus/file-store": "^1.4.0",
"@tus/server": "^2.3.0",
"better-sqlite3": "^12.8.0",
"check-disk-space": "^3.4.0",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"express": "^4.19.2",
"iconv-lite": "^0.4.24",
"uuid": "^14.0.0"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.13",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/node": "^20.11.30",
"@types/uuid": "^9.0.8",
"tsx": "^4.7.1",
"typescript": "^5.4.5"
}
}