mirror of
https://github.com/kopia/kopia.git
synced 2026-02-20 08:00:06 -05:00
Bumps the kopia-ui-npm-dependencies group in /app with 4 updates: [@playwright/test](https://github.com/Microsoft/playwright), [concurrently](https://github.com/open-cli-tools/concurrently), [electron](https://github.com/electron/electron) and [playwright](https://github.com/Microsoft/playwright). Updates `@playwright/test` from 1.36.2 to 1.37.1 - [Release notes](https://github.com/Microsoft/playwright/releases) - [Commits](https://github.com/Microsoft/playwright/compare/v1.36.2...v1.37.1) Updates `concurrently` from 8.2.0 to 8.2.1 - [Release notes](https://github.com/open-cli-tools/concurrently/releases) - [Commits](https://github.com/open-cli-tools/concurrently/compare/v8.2.0...v8.2.1) Updates `electron` from 25.3.2 to 26.1.0 - [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/v25.3.2...v26.1.0) Updates `playwright` from 1.36.2 to 1.37.1 - [Release notes](https://github.com/Microsoft/playwright/releases) - [Commits](https://github.com/Microsoft/playwright/compare/v1.36.2...v1.37.1) --- updated-dependencies: - dependency-name: "@playwright/test" dependency-type: direct:development update-type: version-update:semver-minor dependency-group: kopia-ui-npm-dependencies - dependency-name: concurrently dependency-type: direct:development update-type: version-update:semver-patch dependency-group: kopia-ui-npm-dependencies - dependency-name: electron dependency-type: direct:development update-type: version-update:semver-major dependency-group: kopia-ui-npm-dependencies - dependency-name: playwright dependency-type: direct:development update-type: version-update:semver-minor dependency-group: kopia-ui-npm-dependencies ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
152 lines
3.3 KiB
JSON
152 lines
3.3 KiB
JSON
{
|
|
"name": "kopia-ui",
|
|
"version": "1.0.0",
|
|
"repository": "github:kopia/kopia",
|
|
"dependencies": {
|
|
"auto-launch": "^5.0.6",
|
|
"electron-is-dev": "^2.0.0",
|
|
"electron-log": "^4.4.8",
|
|
"electron-updater": "^6.1.4",
|
|
"minimist": "^1.2.8",
|
|
"semver": "^7.5.4",
|
|
"uuid": "^9.0.0"
|
|
},
|
|
"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"
|
|
]
|
|
}
|
|
],
|
|
"sign": "./sign.js",
|
|
"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.js"
|
|
},
|
|
"devDependencies": {
|
|
"@electron/notarize": "^2.1.0",
|
|
"@playwright/test": "^1.37.1",
|
|
"asar": "^3.2.0",
|
|
"concurrently": "^8.2.1",
|
|
"dotenv": "^16.3.1",
|
|
"electron": "^26.1.0",
|
|
"electron-builder": "^24.6.3",
|
|
"playwright": "^1.37.1",
|
|
"playwright-core": "^1.35.1"
|
|
},
|
|
"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 .",
|
|
"dev": "electron ."
|
|
},
|
|
"eslintConfig": {
|
|
"extends": "react-app"
|
|
},
|
|
"browserslist": {
|
|
"production": [
|
|
"last 1 electron version"
|
|
],
|
|
"development": [
|
|
"last 1 electron version"
|
|
]
|
|
}
|
|
}
|