将 README 改写为产品文档;移除微信/EasyTier/工作台等遗留模块;新增 youLIVE 目标端监控、摄像头推流、质量守卫与转播历史能力。 Co-authored-by: Cursor <cursoragent@cursor.com>
108 lines
2.7 KiB
JSON
108 lines
2.7 KiB
JSON
{
|
|
"name": "live-recorder-console",
|
|
"productName": "无人直播助手",
|
|
"version": "1.0.0",
|
|
"description": "无人直播助手",
|
|
"main": "./out/main/index.js",
|
|
"type": "module",
|
|
"scripts": {
|
|
"dev": "electron-vite dev",
|
|
"build": "electron-vite build",
|
|
"preview": "electron-vite preview",
|
|
"gen:icons": "node ./scripts/generate-icons.mjs",
|
|
"stage:offline-runtime": "node ./scripts/stage-offline-runtime.mjs",
|
|
"prepare:runtime": "node ./scripts/prepare-runtime.mjs",
|
|
"verify:runtime": "node ./scripts/verify-runtime.mjs",
|
|
"dist": "pnpm run prepare:runtime && pnpm run build && pnpm run gen:icons && pnpm run verify:runtime && electron-builder --win --publish never"
|
|
},
|
|
"dependencies": {
|
|
"d3": "^7.9.0",
|
|
"drizzle-orm": "^0.44.2",
|
|
"echarts": "^6.0.0",
|
|
"framer-motion": "^12.23.12",
|
|
"lucide-react": "^0.525.0",
|
|
"react": "^18.3.1",
|
|
"react-dom": "^18.3.1",
|
|
"sql.js": "^1.14.1",
|
|
"three": "^0.183.2",
|
|
"uuid": "^11.1.0",
|
|
"youtubei.js": "^17.2.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/d3": "^7.4.3",
|
|
"@types/node": "^22.10.0",
|
|
"@types/react": "^18.3.12",
|
|
"@types/react-dom": "^18.3.1",
|
|
"@types/uuid": "^10.0.0",
|
|
"@vitejs/plugin-react": "^4.3.4",
|
|
"@resvg/resvg-js": "^2.6.2",
|
|
"electron": "^33.2.0",
|
|
"electron-builder": "^25.1.8",
|
|
"electron-vite": "^2.3.0",
|
|
"png-to-ico": "^2.1.0",
|
|
"typescript": "~5.6.2",
|
|
"vite": "^5.4.11"
|
|
},
|
|
"pnpm": {
|
|
"onlyBuiltDependencies": [
|
|
"electron",
|
|
"electron-builder",
|
|
"esbuild",
|
|
"@resvg/resvg-js"
|
|
]
|
|
},
|
|
"build": {
|
|
"appId": "com.douyin.recorder.console",
|
|
"productName": "无人直播助手",
|
|
"directories": {
|
|
"output": "dist",
|
|
"buildResources": "build"
|
|
},
|
|
"files": [
|
|
"out/**/*",
|
|
"package.json",
|
|
"build/**/*",
|
|
"node_modules/sql.js/**/*"
|
|
],
|
|
"asarUnpack": [
|
|
"**/node_modules/sql.js/**/*.wasm"
|
|
],
|
|
"extraResources": [
|
|
{
|
|
"from": "..",
|
|
"to": "backend",
|
|
"filter": [
|
|
"**/*",
|
|
"!electron/**",
|
|
"!.git/**",
|
|
"!**/__pycache__/**",
|
|
"!**/.venv/**",
|
|
"!**/venv/**",
|
|
"!**/node_modules/**"
|
|
]
|
|
}
|
|
],
|
|
"win": {
|
|
"icon": "build/icon.ico",
|
|
"target": [
|
|
{
|
|
"target": "portable",
|
|
"arch": [
|
|
"x64"
|
|
]
|
|
}
|
|
]
|
|
},
|
|
"nsis": {
|
|
"oneClick": false,
|
|
"allowToChangeInstallationDirectory": true,
|
|
"installerLanguages": [
|
|
"zh_CN",
|
|
"en_US"
|
|
],
|
|
"language": "2052"
|
|
}
|
|
},
|
|
"packageManager": "pnpm@10.25.0+sha1.2cfb3ab644446565c127f58165cc76368c9c920b"
|
|
}
|