23 lines
627 B
JSON
23 lines
627 B
JSON
{
|
|
"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"
|
|
}
|