51 lines
1.2 KiB
JSON
51 lines
1.2 KiB
JSON
{
|
|
"name": "talkedit",
|
|
"version": "0.1.0",
|
|
"private": true,
|
|
"description": "TalkEdit — Open-source AI-powered text-based video editor",
|
|
"main": "electron/main.js",
|
|
"scripts": {
|
|
"tauri": "tauri",
|
|
"dev": "cd frontend && npm run dev -- --host",
|
|
"dev:tauri": "cd backend && python -m uvicorn main:app --reload --port 8642 & cd frontend && cargo tauri dev",
|
|
"build:tauri": "cd frontend && cargo tauri build",
|
|
"dev:frontend": "cd frontend && npm run dev",
|
|
"dev:backend": "cd backend && python -m uvicorn main:app --reload --port 8642",
|
|
"lint": "cd frontend && npm run lint"
|
|
},
|
|
"devDependencies": {
|
|
"concurrently": "^9.1.0",
|
|
"electron": "^33.2.0",
|
|
"electron-builder": "^25.1.0",
|
|
"wait-on": "^8.0.0"
|
|
},
|
|
"dependencies": {
|
|
"python-shell": "^5.0.0"
|
|
},
|
|
"build": {
|
|
"appId": "com.dataants.cutscript",
|
|
"productName": "CutScript",
|
|
"files": [
|
|
"electron/**/*",
|
|
"frontend/dist/**/*",
|
|
"backend/**/*",
|
|
"shared/**/*"
|
|
],
|
|
"extraResources": [
|
|
{
|
|
"from": "backend",
|
|
"to": "backend"
|
|
}
|
|
],
|
|
"win": {
|
|
"target": "nsis"
|
|
},
|
|
"mac": {
|
|
"target": "dmg"
|
|
},
|
|
"linux": {
|
|
"target": "AppImage"
|
|
}
|
|
}
|
|
}
|