mirror of
https://github.com/eigent-ai/eigent.git
synced 2026-04-28 03:30:06 +00:00
Some checks are pending
CodeQL Advanced / Analyze (actions) (push) Waiting to run
CodeQL Advanced / Analyze (javascript-typescript) (push) Waiting to run
CodeQL Advanced / Analyze (python) (push) Waiting to run
Pre-commit / pre-commit (push) Waiting to run
Test / Run Python Tests (push) Waiting to run
145 lines
3.3 KiB
JSON
145 lines
3.3 KiB
JSON
{
|
|
"$schema": "https://raw.githubusercontent.com/electron-userland/electron-builder/master/packages/app-builder-lib/scheme.json",
|
|
"productName": "Eigent",
|
|
"appId": "com.eigent.app",
|
|
"asar": true,
|
|
"directories": {
|
|
"output": "release"
|
|
},
|
|
"files": [
|
|
"dist-electron",
|
|
"dist",
|
|
"resources",
|
|
"!backend",
|
|
"!dist/images",
|
|
"!**/__pycache__",
|
|
"!server",
|
|
"!docs"
|
|
],
|
|
"extraResources": [
|
|
{
|
|
"from": "backend",
|
|
"to": "backend",
|
|
"filter": ["**/*", "!.venv/**/*", "!workspace/.initial_env/**/*"]
|
|
},
|
|
{
|
|
"from": "resources/prebuilt",
|
|
"to": "prebuilt",
|
|
"filter": [
|
|
"**/*",
|
|
"!cache/**/*",
|
|
"!**/.npm-cache/**/*",
|
|
"!uv_python/**/*.pyc",
|
|
"!uv_python/**/__pycache__",
|
|
"!terminal_venv/**/*.pyc",
|
|
"!terminal_venv/**/__pycache__",
|
|
"!**/__pycache__/**",
|
|
"!**/*.pyc",
|
|
"!**/*.pyo",
|
|
"!venv/**/__pycache__/**",
|
|
"!venv/**/*.pyc",
|
|
|
|
"!venv/lib/python*/site-packages/yt_dlp/**",
|
|
"!venv/lib/python*/site-packages/yt_dlp-*.dist-info/**",
|
|
"!uv_python/**/site-packages/setuptools/**",
|
|
"!uv_python/**/site-packages/wheel/**"
|
|
]
|
|
},
|
|
{
|
|
"from": "resources/example-skills",
|
|
"to": "example-skills"
|
|
}
|
|
],
|
|
"protocols": [
|
|
{
|
|
"name": "Eigent OAuth",
|
|
"schemes": ["eigent"]
|
|
}
|
|
],
|
|
"publish": [
|
|
{
|
|
"provider": "github",
|
|
"owner": "eigent-ai",
|
|
"repo": "eigent",
|
|
"releaseType": "release"
|
|
}
|
|
],
|
|
"icon": "build/icon.ico",
|
|
"afterPack": "./config/before-sign.cjs",
|
|
"afterSign": "./config/notarize.cjs",
|
|
"mac": {
|
|
"icon": "build/icon.icns",
|
|
"target": ["dmg", "zip"],
|
|
"entitlements": "entitlements.mac.plist",
|
|
"entitlementsInherit": "entitlements.mac.plist",
|
|
"hardenedRuntime": true,
|
|
"gatekeeperAssess": false,
|
|
"notarize": false,
|
|
"signIgnore": [
|
|
".*\\.py$",
|
|
".*\\.pyc$",
|
|
".*\\.pyo$",
|
|
".*\\.pyi$",
|
|
".*\\.typed$",
|
|
".*\\.txt$",
|
|
".*\\.md$",
|
|
".*\\.rst$",
|
|
".*\\.json$",
|
|
".*\\.yaml$",
|
|
".*\\.yml$",
|
|
".*\\.toml$",
|
|
".*\\.cfg$",
|
|
".*\\.ini$",
|
|
".*\\.csv$",
|
|
".*\\.html$",
|
|
".*\\.css$",
|
|
".*\\.map$"
|
|
],
|
|
"extendInfo": {
|
|
"CFBundleURLTypes": [
|
|
{
|
|
"CFBundleURLName": "com.eigent.app",
|
|
"CFBundleURLSchemes": ["eigent"]
|
|
}
|
|
]
|
|
}
|
|
},
|
|
"dmg": {
|
|
"background": "src/assets/dmg-background.png",
|
|
"window": {
|
|
"width": 660,
|
|
"height": 400
|
|
},
|
|
"iconSize": 128,
|
|
"contents": [
|
|
{ "x": 180, "y": 200, "type": "file" },
|
|
{ "x": 480, "y": 200, "type": "link", "path": "/Applications" }
|
|
]
|
|
},
|
|
"win": {
|
|
"icon": "build/icon.ico",
|
|
"artifactName": "${productName}.Setup.${version}.exe",
|
|
"target": [
|
|
{
|
|
"target": "nsis",
|
|
"arch": ["x64"]
|
|
}
|
|
]
|
|
},
|
|
"linux": {
|
|
"icon": "build/icon.png",
|
|
"target": ["AppImage"],
|
|
"category": "Development"
|
|
},
|
|
"nsis": {
|
|
"oneClick": false,
|
|
"perMachine": false,
|
|
"allowElevation": true,
|
|
"allowToChangeInstallationDirectory": true,
|
|
"deleteAppDataOnUninstall": false,
|
|
"installerIcon": "build/icon.ico",
|
|
"uninstallerIcon": "build/icon.ico",
|
|
"installerHeaderIcon": "build/icon.ico",
|
|
"include": "build/installer.nsh"
|
|
}
|
|
}
|