Files
kopia/app/package.json
dependabot[bot] c40a4b4617 build(deps): bump the kopia-ui-npm-dependencies group (#4327)
Bumps the kopia-ui-npm-dependencies group in /app with 6 updates:

| Package | From | To |
| --- | --- | --- |
| [electron-log](https://github.com/megahertz/electron-log) | `5.2.3` | `5.2.4` |
| [@playwright/test](https://github.com/microsoft/playwright) | `1.49.0` | `1.49.1` |
| [concurrently](https://github.com/open-cli-tools/concurrently) | `9.1.0` | `9.1.2` |
| [dotenv](https://github.com/motdotla/dotenv) | `16.4.5` | `16.4.7` |
| [playwright](https://github.com/microsoft/playwright) | `1.49.0` | `1.49.1` |
| [playwright-core](https://github.com/microsoft/playwright) | `1.49.0` | `1.49.1` |


Updates `electron-log` from 5.2.3 to 5.2.4
- [Changelog](https://github.com/megahertz/electron-log/blob/master/CHANGELOG.md)
- [Commits](https://github.com/megahertz/electron-log/compare/v5.2.3...v5.2.4)

Updates `@playwright/test` from 1.49.0 to 1.49.1
- [Release notes](https://github.com/microsoft/playwright/releases)
- [Commits](https://github.com/microsoft/playwright/compare/v1.49.0...v1.49.1)

Updates `concurrently` from 9.1.0 to 9.1.2
- [Release notes](https://github.com/open-cli-tools/concurrently/releases)
- [Commits](https://github.com/open-cli-tools/concurrently/compare/v9.1.0...v9.1.2)

Updates `dotenv` from 16.4.5 to 16.4.7
- [Changelog](https://github.com/motdotla/dotenv/blob/master/CHANGELOG.md)
- [Commits](https://github.com/motdotla/dotenv/compare/v16.4.5...v16.4.7)

Updates `playwright` from 1.49.0 to 1.49.1
- [Release notes](https://github.com/microsoft/playwright/releases)
- [Commits](https://github.com/microsoft/playwright/compare/v1.49.0...v1.49.1)

Updates `playwright-core` from 1.49.0 to 1.49.1
- [Release notes](https://github.com/microsoft/playwright/releases)
- [Commits](https://github.com/microsoft/playwright/compare/v1.49.0...v1.49.1)

---
updated-dependencies:
- dependency-name: electron-log
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: kopia-ui-npm-dependencies
- dependency-name: "@playwright/test"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  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: dotenv
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: kopia-ui-npm-dependencies
- dependency-name: playwright
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: kopia-ui-npm-dependencies
- dependency-name: playwright-core
  dependency-type: direct:development
  update-type: version-update:semver-patch
  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>
2025-01-07 18:35:53 -08:00

163 lines
3.6 KiB
JSON

{
"name": "kopia-ui",
"version": "1.0.0",
"repository": "github:kopia/kopia",
"dependencies": {
"auto-launch": "^5.0.6",
"electron-log": "^5.2.4",
"electron-store": "^10.0.0",
"electron-updater": "^6.3.9",
"minimist": "^1.2.8",
"semver": "^7.6.3",
"uuid": "^11.0.3"
},
"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"
]
}
],
"sign": "./sign.cjs",
"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.cjs"
},
"deb": {
"appArmorProfile": "kopia-ui.apparmor"
},
"rpm": {
"appArmorProfile": "kopia-ui.apparmor"
},
"AppImage": {
"appArmorProfile": "kopia-ui.apparmor"
},
"devDependencies": {
"@electron/notarize": "^2.5.0",
"@playwright/test": "^1.49.1",
"asar": "^3.2.0",
"concurrently": "^9.1.2",
"dotenv": "^16.4.7",
"electron": "^33.2.1",
"electron-builder": "^v26.0.0-alpha.8",
"electron-store": "^10.0.0",
"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"
]
}
}