2026-03-03 06:31:04 -05:00
|
|
|
{
|
2026-03-24 23:55:29 -06:00
|
|
|
"name": "talkedit",
|
2026-03-03 06:31:04 -05:00
|
|
|
"version": "0.1.0",
|
|
|
|
|
"private": true,
|
2026-03-24 23:55:29 -06:00
|
|
|
"description": "TalkEdit — Open-source AI-powered text-based video editor",
|
2026-03-03 06:31:04 -05:00
|
|
|
"main": "electron/main.js",
|
|
|
|
|
"scripts": {
|
2026-03-25 01:22:30 -06:00
|
|
|
"tauri": "tauri",
|
|
|
|
|
"dev": "cd frontend && npm run dev -- --host",
|
2026-04-09 01:36:28 -06:00
|
|
|
"dev:tauri": "bash -lc 'set -e; PY=; for p in ./.venv312/bin/python3.12 ./.venv312/bin/python ./.venv/bin/python3 ./.venv/bin/python ./venv/bin/python3 ./venv/bin/python; do if [ -x \"$p\" ]; then PY=\"$PWD/${p#./}\"; break; fi; done; if [ -z \"$PY\" ]; then echo \"No project virtualenv Python found (checked .venv312, .venv, venv)\"; exit 1; fi; (cd backend && \"$PY\" -m uvicorn main:app --reload --port 8642) & cd frontend && cargo tauri dev'",
|
2026-03-25 01:22:30 -06:00
|
|
|
"build:tauri": "cd frontend && cargo tauri build",
|
2026-03-03 06:31:04 -05:00
|
|
|
"dev:frontend": "cd frontend && npm run dev",
|
2026-04-09 01:36:28 -06:00
|
|
|
"dev:backend": "bash -lc 'set -e; PY=; for p in ./.venv312/bin/python3.12 ./.venv312/bin/python ./.venv/bin/python3 ./.venv/bin/python ./venv/bin/python3 ./venv/bin/python; do if [ -x \"$p\" ]; then PY=\"$PWD/${p#./}\"; break; fi; done; if [ -z \"$PY\" ]; then echo \"No project virtualenv Python found (checked .venv312, .venv, venv)\"; exit 1; fi; cd backend && \"$PY\" -m uvicorn main:app --reload --port 8642'",
|
2026-03-03 06:31:04 -05:00
|
|
|
"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": {
|
2026-03-28 12:26:45 -06:00
|
|
|
"appId": "com.talkedit.app",
|
|
|
|
|
"productName": "TalkEdit",
|
2026-03-03 06:31:04 -05:00
|
|
|
"files": [
|
|
|
|
|
"electron/**/*",
|
|
|
|
|
"frontend/dist/**/*",
|
|
|
|
|
"backend/**/*",
|
|
|
|
|
"shared/**/*"
|
|
|
|
|
],
|
|
|
|
|
"extraResources": [
|
|
|
|
|
{
|
|
|
|
|
"from": "backend",
|
|
|
|
|
"to": "backend"
|
|
|
|
|
}
|
|
|
|
|
],
|
|
|
|
|
"win": {
|
|
|
|
|
"target": "nsis"
|
|
|
|
|
},
|
|
|
|
|
"mac": {
|
|
|
|
|
"target": "dmg"
|
|
|
|
|
},
|
|
|
|
|
"linux": {
|
|
|
|
|
"target": "AppImage"
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|