mirror of
https://github.com/penxio/penx.git
synced 2026-01-15 00:18:08 -05:00
55 lines
1.6 KiB
YAML
55 lines
1.6 KiB
YAML
appId: io.penx.app
|
|
productName: PenX
|
|
directories:
|
|
buildResources: build
|
|
files:
|
|
- '!**/.vscode/*'
|
|
- '!src/*'
|
|
- '!packages/**'
|
|
- '!electron.vite.config.{js,ts,mjs,cjs}'
|
|
- '!{.eslintcache,eslint.config.mjs,.prettierignore,.prettierrc.yaml,dev-app-update.yml,CHANGELOG.md,README.md}'
|
|
- '!{.env,.env.*,.npmrc,pnpm-lock.yaml}'
|
|
- '!{tsconfig.json,tsconfig.node.json,tsconfig.web.json}'
|
|
asarUnpack:
|
|
- resources/**
|
|
win:
|
|
executableName: penx
|
|
nsis:
|
|
artifactName: ${name}-${version}-setup.${ext}
|
|
shortcutName: ${productName}
|
|
uninstallDisplayName: ${productName}
|
|
createDesktopShortcut: always
|
|
mac:
|
|
entitlements: build/entitlements.mac.plist
|
|
entitlementsInherit: build/entitlements.mac.plist
|
|
hardenedRuntime: true
|
|
gatekeeperAssess: false
|
|
extendInfo:
|
|
- NSCameraUsageDescription: Application requests access to the device's camera.
|
|
- NSMicrophoneUsageDescription: Application requests access to the device's microphone.
|
|
- NSDocumentsFolderUsageDescription: Application requests access to the user's Documents folder.
|
|
- NSDownloadsFolderUsageDescription: Application requests access to the user's Downloads folder.
|
|
notarize: false
|
|
dmg:
|
|
artifactName: ${name}-${version}.${ext}
|
|
afterSign: build/notarize.js
|
|
|
|
linux:
|
|
target:
|
|
- AppImage
|
|
- snap
|
|
- deb
|
|
maintainer: penx.io
|
|
category: Utility
|
|
appImage:
|
|
artifactName: ${name}-${version}.${ext}
|
|
npmRebuild: false
|
|
publish:
|
|
provider: github
|
|
owner: penxio
|
|
repo: penx
|
|
electronDownload:
|
|
mirror: https://npmmirror.com/mirrors/electron/
|
|
protocols:
|
|
- name: "PenX Protocol"
|
|
schemes: ["penx"] |