Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 10 additions & 3 deletions electron-builder.yml
Original file line number Diff line number Diff line change
@@ -1,11 +1,16 @@
appId: com.Queryus.QGenie
productName: QGenie
extraResources:
- from: 'resources/'
to: 'resources'
filter:
- '**/*'
directories:
output: dist
buildResources: build
files:
- "out/**"
- "package.json"
- 'out/**'
- 'package.json'
asarUnpack:
- resources/**
win:
Expand All @@ -21,6 +26,9 @@ mac:
icon: build/icon.icns
target: dmg
entitlementsInherit: build/entitlements.mac.plist
binaries:
- resources/mac/qgenie-api
- resources/mac/qgenie-ai
extendInfo:
- NSCameraUsageDescription: Application requests access to the device's camera.
- NSMicrophoneUsageDescription: Application requests access to the device's microphone.
Expand All @@ -42,4 +50,3 @@ publish:
provider: github
owner: Queryus
repo: QGenie_app

116 changes: 109 additions & 7 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 5 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,14 @@
"url": "https://github.com/Queryus/QGenie_app/issues"
},
"scripts": {
"prebuild": "chmod +x resources/mac/qgenie-*",
"format": "prettier --write .",
"lint": "eslint --cache .",
"typecheck:node": "tsc --noEmit -p tsconfig.node.json --composite false",
"typecheck:web": "tsc --noEmit -p tsconfig.web.json --composite false",
"typecheck": "npm run typecheck:node && npm run typecheck:web",
"start": "electron .",
"dev": "electron-vite dev -w",
"dev": "cross-env NODE_ENV=development electron-vite dev -w",
"build:electron-app": "npm run typecheck && electron-vite build",
"build": "npm run build:electron-app && electron-builder --publish never",
"postinstall": "electron-builder install-app-deps",
Expand Down Expand Up @@ -59,7 +60,8 @@
"tailwind-merge": "^3.3.1",
"tailwindcss-animate": "^1.0.7",
"tw-animate-css": "^1.3.5",
"uuid": "^11.1.0"
"uuid": "^11.1.0",
"wait-on": "^8.0.4"
},
"devDependencies": {
"@electron-toolkit/eslint-config-prettier": "^3.0.0",
Expand All @@ -72,6 +74,7 @@
"@types/react-dom": "^19.1.2",
"@vitejs/plugin-react": "^4.6.0",
"autoprefixer": "^10.4.21",
"cross-env": "^10.0.0",
"electron": "^37.1.0",
"electron-builder": "^26.0.12",
"electron-vite": "^3.1.0",
Expand Down
Loading