Squashed commit of the following:
commit d6c92ea0ad95c0b640ac9c7df48197412c7518e3
Author: haritabh-z01 <haritabh.z01+github@gmail.com>
Date: Thu Aug 21 23:27:44 2025 +0530
fix: unpacking amical/smart-whisper dep
commit 87819819bb12c07b94f5b52cbb0ea42a452c16e2
Author: haritabh-z01 <haritabh.z01+github@gmail.com>
Date: Thu Aug 21 17:41:02 2025 +0530
fix: unpacking of smart-whisper
commit 81cec166834606cbff2cdd2e750dcc1fb769d4f3
Author: haritabh-z01 <haritabh.z01+github@gmail.com>
Date: Thu Aug 21 16:08:39 2025 +0530
chore: re-enable mac builds
commit f13069c1f350fe06c69aa8f16af41f983f34131e
Author: haritabh-z01 <haritabh.z01+github@gmail.com>
Date: Thu Aug 21 13:06:26 2025 +0530
feat: add smart-whisper package with updated build configuration
commit a24e06856cc595f5e6c5d914090531716d208d2a
Author: haritabh-z01 <haritabh.z01+github@gmail.com>
Date: Thu Aug 21 11:37:25 2025 +0530
chore: bump smart-whisper ver
commit 98f84b6f89c873370f1bb356f11c97dab0185ab7
Author: haritabh-z01 <haritabh.z01+github@gmail.com>
Date: Wed Aug 20 08:59:55 2025 +0530
feat: release wf updates for win builds
commit a85825d362f2a27fdef7b49533a9139aea4785b7
Author: haritabh-z01 <haritabh.z01+github@gmail.com>
Date: Wed Aug 20 08:36:13 2025 +0530
feat: add windows support basics
This commit is contained in:
parent
2d852a0d14
commit
17d034be80
59 changed files with 10524 additions and 3079 deletions
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@amical/desktop",
|
||||
"version": "0.0.9",
|
||||
"version": "0.0.9-windows-ci-test",
|
||||
"description": "Amical Desktop app",
|
||||
"main": ".vite/build/main.js",
|
||||
"productName": "Amical",
|
||||
|
|
@ -8,6 +8,11 @@
|
|||
"type": "git",
|
||||
"url": "https://github.com/amicalhq/amical"
|
||||
},
|
||||
"author": {
|
||||
"name": "Amical",
|
||||
"email": "contact@amical.ai",
|
||||
"url": "https://amical.ai"
|
||||
},
|
||||
"scripts": {
|
||||
"start": "pnpm build:deps && electron-forge start",
|
||||
"start:onboarding": "FORCE_ONBOARDING=true pnpm start",
|
||||
|
|
@ -22,6 +27,8 @@
|
|||
"make:zip:x64": "pnpm build:deps && electron-forge make --targets=@electron-forge/maker-zip --platform=darwin --arch=x64",
|
||||
"package:arm64": "pnpm build:deps && electron-forge package --platform=darwin --arch=arm64",
|
||||
"package:x64": "pnpm build:deps && electron-forge package --platform=darwin --arch=x64",
|
||||
"package:windows": "pnpm build:deps && electron-forge package --platform=win32 --arch=x64",
|
||||
"make:windows": "pnpm build:deps && electron-forge make --platform=win32 --arch=x64",
|
||||
"publish": "electron-forge publish",
|
||||
"lint": "eslint --ext .ts,.tsx .",
|
||||
"format:check": "prettier --check \"**/*.{ts,tsx,md,json,mjs,mts,css,mdx}\" --cache --ignore-path=../../.prettierignore",
|
||||
|
|
@ -29,9 +36,11 @@
|
|||
"db:generate": "drizzle-kit generate",
|
||||
"db:push": "drizzle-kit push",
|
||||
"db:migrate": "drizzle-kit migrate",
|
||||
"build:deps": "pnpm build:types && pnpm build:swift-helper",
|
||||
"build:deps": "pnpm build:types && pnpm build:native-helper",
|
||||
"build:types": "pnpm --filter @amical/types build",
|
||||
"build:swift-helper": "pnpm --filter @amical/swift-helper build",
|
||||
"build:windows-helper": "pnpm --filter @amical/windows-helper build",
|
||||
"build:native-helper": "node -p \"process.platform === 'darwin' ? 'build:swift-helper' : process.platform === 'win32' ? 'build:windows-helper' : 'echo No native helpers'\" | xargs pnpm run",
|
||||
"dev": "pnpm start",
|
||||
"download-node": "tsx scripts/download-node-binaries.ts",
|
||||
"download-node:all": "tsx scripts/download-node-binaries.ts --all"
|
||||
|
|
@ -39,16 +48,16 @@
|
|||
"keywords": [],
|
||||
"license": "MIT",
|
||||
"devDependencies": {
|
||||
"@electron-forge/cli": "^7.8.1",
|
||||
"@electron-forge/maker-deb": "^7.8.1",
|
||||
"@electron-forge/maker-dmg": "^7.8.1",
|
||||
"@electron-forge/maker-rpm": "^7.8.1",
|
||||
"@electron-forge/maker-squirrel": "^7.8.1",
|
||||
"@electron-forge/maker-zip": "^7.8.1",
|
||||
"@electron-forge/plugin-auto-unpack-natives": "^7.8.1",
|
||||
"@electron-forge/plugin-fuses": "^7.8.1",
|
||||
"@electron-forge/plugin-vite": "^7.8.1",
|
||||
"@electron-forge/publisher-github": "^7.8.1",
|
||||
"@electron-forge/cli": "7.8.2",
|
||||
"@electron-forge/maker-deb": "7.8.2",
|
||||
"@electron-forge/maker-dmg": "7.8.2",
|
||||
"@electron-forge/maker-rpm": "7.8.2",
|
||||
"@electron-forge/maker-squirrel": "7.8.2",
|
||||
"@electron-forge/maker-zip": "7.8.2",
|
||||
"@electron-forge/plugin-auto-unpack-natives": "7.8.2",
|
||||
"@electron-forge/plugin-fuses": "7.8.2",
|
||||
"@electron-forge/plugin-vite": "7.8.2",
|
||||
"@electron-forge/publisher-github": "7.8.2",
|
||||
"@electron/fuses": "^1.8.0",
|
||||
"@rollup/plugin-commonjs": "^28.0.6",
|
||||
"@tailwindcss/vite": "^4.1.6",
|
||||
|
|
@ -78,6 +87,7 @@
|
|||
"@hookform/resolvers": "^5.0.1",
|
||||
"@libsql/client": "^0.15.9",
|
||||
"@libsql/darwin-x64": "0.5.13",
|
||||
"@libsql/win32-x64-msvc": "^0.5.13",
|
||||
"@openrouter/ai-sdk-provider": "^0.7.2",
|
||||
"@radix-ui/react-accordion": "^1.2.10",
|
||||
"@radix-ui/react-alert-dialog": "^1.1.13",
|
||||
|
|
@ -142,7 +152,7 @@
|
|||
"react-hook-form": "^7.56.3",
|
||||
"react-resizable-panels": "^3.0.2",
|
||||
"recharts": "^2.15.3",
|
||||
"smart-whisper": "0.2.0",
|
||||
"@amical/smart-whisper": "workspace:*",
|
||||
"sonner": "^2.0.3",
|
||||
"split2": "^4.2.0",
|
||||
"superjson": "^2.2.2",
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue