mirror of
https://github.com/kopia/kopia.git
synced 2025-12-23 22:57:50 -05:00
Bumps [electron](https://github.com/electron/electron) from 36.3.2 to 36.8.1. - [Release notes](https://github.com/electron/electron/releases) - [Changelog](https://github.com/electron/electron/blob/main/docs/breaking-changes.md) - [Commits](https://github.com/electron/electron/compare/v36.3.2...v36.8.1) --- updated-dependencies: - dependency-name: electron dependency-version: 36.8.1 dependency-type: direct:development ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
167 lines
3.7 KiB
JSON
167 lines
3.7 KiB
JSON
{
|
|
"name": "kopia-ui",
|
|
"version": "1.0.0",
|
|
"repository": "github:kopia/kopia",
|
|
"dependencies": {
|
|
"auto-launch": "^5.0.6",
|
|
"electron-log": "^5.4.0",
|
|
"electron-store": "^10.0.1",
|
|
"electron-updater": "^6.6.2",
|
|
"minimist": "^1.2.8",
|
|
"semver": "^7.7.2",
|
|
"uuid": "^11.1.0"
|
|
},
|
|
"type": "module",
|
|
"author": {
|
|
"email": "kopia-pmc@googlegroups.com",
|
|
"name": "Kopia Authors"
|
|
},
|
|
"build": {
|
|
"productName": "KopiaUI",
|
|
"appId": "io.kopia.ui",
|
|
"publish": [
|
|
{
|
|
"provider": "github",
|
|
"vPrefixedTagName": true,
|
|
"releaseType": "release"
|
|
}
|
|
],
|
|
"files": [
|
|
"public/**/*",
|
|
"node_modules/**/*"
|
|
],
|
|
"extraResources": [
|
|
{
|
|
"from": "public/preload.js",
|
|
"to": "."
|
|
},
|
|
{
|
|
"from": "resources/${os}",
|
|
"to": ".",
|
|
"filter": [
|
|
"**/*"
|
|
]
|
|
}
|
|
],
|
|
"directories": {
|
|
"buildResources": "assets",
|
|
"output": "../dist/kopia-ui"
|
|
},
|
|
"nsis": {
|
|
"oneClick": false,
|
|
"artifactName": "${productName}-Setup-${version}.${ext}",
|
|
"perMachine": false
|
|
},
|
|
"snap": {
|
|
"publish": [
|
|
"github"
|
|
]
|
|
},
|
|
"win": {
|
|
"target": [
|
|
"nsis",
|
|
"zip"
|
|
],
|
|
"extraResources": [
|
|
{
|
|
"from": "../dist/kopia_windows_amd64",
|
|
"to": "server",
|
|
"filter": [
|
|
"kopia.exe"
|
|
]
|
|
}
|
|
],
|
|
"signtoolOptions": {
|
|
"sign": "./sign.mjs",
|
|
"signingHashAlgorithms": [
|
|
"sha256"
|
|
]
|
|
}
|
|
},
|
|
"mac": {
|
|
"hardenedRuntime": true,
|
|
"gatekeeperAssess": false,
|
|
"entitlements": "entitlements.mac.plist",
|
|
"entitlementsInherit": "entitlements.mac.plist",
|
|
"category": "public.app-category.utilities",
|
|
"extraResources": [
|
|
{
|
|
"from": "../dist/kopia_darwin_universal",
|
|
"to": "server",
|
|
"filter": [
|
|
"kopia"
|
|
]
|
|
}
|
|
]
|
|
},
|
|
"linux": {
|
|
"target": [
|
|
"AppImage",
|
|
"deb",
|
|
"rpm"
|
|
],
|
|
"extraResources": [
|
|
{
|
|
"from": "../dist/kopia_linux_${arch}",
|
|
"to": "server",
|
|
"filter": [
|
|
"kopia"
|
|
]
|
|
}
|
|
]
|
|
},
|
|
"afterSign": "notarize.mjs"
|
|
},
|
|
"deb": {
|
|
"appArmorProfile": "kopia-ui.apparmor"
|
|
},
|
|
"rpm": {
|
|
"appArmorProfile": "kopia-ui.apparmor"
|
|
},
|
|
"AppImage": {
|
|
"appArmorProfile": "kopia-ui.apparmor"
|
|
},
|
|
"devDependencies": {
|
|
"@electron/notarize": "^3.0.1",
|
|
"@playwright/test": "^1.52.0",
|
|
"asar": "^3.2.0",
|
|
"concurrently": "^9.1.2",
|
|
"dotenv": "^16.5.0",
|
|
"electron": "^36.8.1",
|
|
"electron-builder": "^26.0.12",
|
|
"playwright": "^1.37.1",
|
|
"playwright-core": "^1.35.1",
|
|
"prettier": "^3.5.3"
|
|
},
|
|
"homepage": "./",
|
|
"description": "Fast and secure open source backup.",
|
|
"license": "Apache-2.0",
|
|
"main": "public/electron.js",
|
|
"scripts": {
|
|
"start": "react-scripts start",
|
|
"build-html": "react-scripts build",
|
|
"e2e": "playwright test",
|
|
"eject": "react-scripts eject",
|
|
"start-electron": "electron .",
|
|
"build-electron": "electron-builder",
|
|
"build-electron-windows": "electron-builder -w --x64",
|
|
"build-electron-linux": "electron-builder -l",
|
|
"build-electron-dir": "electron-builder --dir",
|
|
"start-electron-prebuilt": "ELECTRON_IS_DEV=0 electron .",
|
|
"prettier": "prettier --write .",
|
|
"prettier:check": "prettier --check .",
|
|
"dev": "electron ."
|
|
},
|
|
"eslintConfig": {
|
|
"extends": "react-app"
|
|
},
|
|
"browserslist": {
|
|
"production": [
|
|
"last 1 electron version"
|
|
],
|
|
"development": [
|
|
"last 1 electron version"
|
|
]
|
|
}
|
|
}
|