mirror of
https://github.com/SerTimBerrners-Lee/talkis.git
synced 2026-07-09 17:29:15 +00:00
55 lines
2.3 KiB
JSON
55 lines
2.3 KiB
JSON
{
|
|
"name": "talkis",
|
|
"private": true,
|
|
"version": "0.3.6",
|
|
"license": "AGPL-3.0-or-later",
|
|
"type": "module",
|
|
"packageManager": "bun@1.2.13",
|
|
"scripts": {
|
|
"prepare:ffmpeg-sidecar": "bun scripts/prepare-ffmpeg-sidecar.mjs",
|
|
"prepare:stt-sidecar": "bun scripts/prepare-stt-sidecar.mjs",
|
|
"prepare:sidecars": "bun run prepare:ffmpeg-sidecar && bun run prepare:stt-sidecar",
|
|
"dev": "bun scripts/run-vite.mjs",
|
|
"build": "tsc && bun scripts/run-vite.mjs build",
|
|
"check": "bun run prepare:sidecars && bunx tsc --noEmit && cargo check --manifest-path src-tauri/Cargo.toml",
|
|
"test": "bun test",
|
|
"smoke:hotkey": "bun test ./src/windows/widget/services/hotkeyFsm.test.js",
|
|
"check:versions": "bash scripts/check-version-sync.sh",
|
|
"check:release": "bun run check:versions && bun run check && bun run smoke:hotkey && bun run build",
|
|
"postprocess:macos-release": "VERSION=$(python3 -c \"import json; print(json.load(open('package.json'))['version'])\") && BUILD_ROOT=src-tauri/target/release/bundle bash scripts/postprocess-macos-release.sh \"$VERSION\"",
|
|
"build:release": "bun scripts/build-release.mjs",
|
|
"build:release:macos": "bun scripts/build-release.mjs macos",
|
|
"build:release:windows": "bun scripts/build-release.mjs windows",
|
|
"build:release:linux": "bun scripts/build-release.mjs linux",
|
|
"preview": "bun scripts/run-vite.mjs preview",
|
|
"tauri": "tauri",
|
|
"logs": "tail -f ~/.talkis/talkis.log",
|
|
"logs:clear": "rm -f ~/.talkis/talkis.log"
|
|
},
|
|
"dependencies": {
|
|
"@phosphor-icons/react": "^2.1.10",
|
|
"@tauri-apps/api": "^2",
|
|
"@tauri-apps/plugin-autostart": "^2.5.1",
|
|
"@tauri-apps/plugin-clipboard-manager": "^2.3.2",
|
|
"@tauri-apps/plugin-deep-link": "^2.4.8",
|
|
"@tauri-apps/plugin-dialog": "^2.7.1",
|
|
"@tauri-apps/plugin-global-shortcut": "^2.3.1",
|
|
"@tauri-apps/plugin-opener": "^2",
|
|
"@tauri-apps/plugin-process": "^2.3.1",
|
|
"@tauri-apps/plugin-store": "^2.4.2",
|
|
"@tauri-apps/plugin-updater": "^2.10.1",
|
|
"react": "^19.1.0",
|
|
"react-dom": "^19.1.0"
|
|
},
|
|
"devDependencies": {
|
|
"@tailwindcss/vite": "^4.2.1",
|
|
"@tauri-apps/cli": "^2",
|
|
"@types/react": "^19.1.8",
|
|
"@types/react-dom": "^19.1.6",
|
|
"@vitejs/plugin-react": "^4.6.0",
|
|
"ffmpeg-static": "^5.3.0",
|
|
"tailwindcss": "^4.2.1",
|
|
"typescript": "~5.8.3",
|
|
"vite": "^7.0.4"
|
|
}
|
|
}
|