feat: 实现后端基础架构与 VOD 核心 API(Express + SQLite + JWT)

This commit is contained in:
2026-06-29 17:46:38 +06:00
parent 0192c313f4
commit da06866360
25 changed files with 10525 additions and 0 deletions
+22
View File
@@ -0,0 +1,22 @@
{
"name": "aliyun-vod-media-library-manager",
"version": "0.1.0",
"description": "A lightweight, self-hosted management console for Alibaba Cloud VOD",
"private": true,
"workspaces": [
"apps/*"
],
"scripts": {
"dev": "concurrently \"npm run dev -w apps/server\" \"npm run dev -w apps/web\"",
"build": "npm run build -w apps/web && npm run build -w apps/server",
"lint": "npm run lint -w apps/server && npm run lint -w apps/web",
"test": "npm run test -w apps/server"
},
"devDependencies": {
"concurrently": "^8.2.2"
},
"engines": {
"node": ">=20.0.0"
},
"license": "MIT"
}