Files
gitlab-instance-0a899031_do…/package.json
2026-03-28 02:39:29 -05:00

18 lines
684 B
JSON
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
{
"name": "douyinyoutube",
"private": true,
"description": "直播推流控制台:一键开发/构建脚本入口(核心逻辑见 scripts/launch.py",
"scripts": {
"dev": "concurrently -k -n api,console -c cyan,magenta \"npm run dev:api\" \"npm run dev:console\"",
"dev:api": "python -m uvicorn web:app --host 0.0.0.0 --port 8001 --reload",
"dev:console": "npm run dev --prefix web-console",
"build": "npm run build --prefix web-console",
"start": "python scripts/launch.py",
"start:api": "python scripts/launch.py --api-only",
"preview": "python scripts/launch.py --skip-build"
},
"devDependencies": {
"concurrently": "^9.1.2"
}
}