talkis/package.json
David Perov b83ea7254f
Some checks are pending
CI / cargo check (linux) (push) Waiting to run
CI / cargo check (macos) (push) Waiting to run
CI / cargo check (windows) (push) Waiting to run
CI / tsc + hotkey smoke (push) Waiting to run
Release v0.3.5
2026-07-02 14:09:53 +03:00

55 lines
2.3 KiB
JSON

{
"name": "talkis",
"private": true,
"version": "0.3.5",
"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": "vite",
"build": "tsc && vite 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": "vite preview",
"tauri": "tauri",
"logs": "tail -f ~/.talkis/talkis.log",
"logs:clear": "rm -f ~/.talkis/talkis.log"
},
"dependencies": {
"@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",
"lucide-react": "^0.577.0",
"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"
}
}