This repository has been archived on 2024-02-08. You can view files and clone it, but cannot push or open issues or pull requests.
desktop/package.json
renovate c8227845bd
Some checks reported errors
continuous-integration/drone/push Build was killed
chore(deps): update dependency electron to v16.0.2 (#69)
This PR contains the following updates:

| Package | Type | Update | Change |
|---|---|---|---|
| [electron](https://github.com/electron/electron) | devDependencies | patch | [`16.0.1` -> `16.0.2`](https://renovatebot.com/diffs/npm/electron/16.0.1/16.0.2) |

---

### Release Notes

<details>
<summary>electron/electron</summary>

### [`v16.0.2`](https://github.com/electron/electron/releases/v16.0.2)

[Compare Source](https://github.com/electron/electron/compare/v16.0.1...v16.0.2)

### Release Notes for v16.0.2

#### Fixes

-   Fixed a potential issue when setting backgroundColor on `BrowserView`s. [#&#8203;31947](https://github.com/electron/electron/pull/31947) <span style="font-size:small;">(Also in [14](https://github.com/electron/electron/pull/31945), [15](https://github.com/electron/electron/pull/31946), [17](https://github.com/electron/electron/pull/31948))</span>
-   Fixed console windows from ELECTRON_RUN_AS_NODE instances. [#&#8203;31973](https://github.com/electron/electron/pull/31973) <span style="font-size:small;">(Also in [17](https://github.com/electron/electron/pull/31972))</span>

#### Other Changes

-   Updated Chromium to 96.0.4664.55. [#&#8203;31909](https://github.com/electron/electron/pull/31909)

</details>

---

### Configuration

📅 **Schedule**: At any time (no schedule defined).

🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied.

♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 **Ignore**: Close this PR and you won't be reminded about this update again.

---

 - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box.

---

This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate).

Reviewed-on: #69
Co-authored-by: renovate <renovatebot@kolaente.de>
Co-committed-by: renovate <renovatebot@kolaente.de>
2021-11-25 19:56:50 +00:00

61 lines
1.3 KiB
JSON

{
"name": "vikunja-desktop",
"version": "0.16.0-dev",
"description": "Vikunja's frontend as a standalone desktop application.",
"main": "main.js",
"repository": "https://code.vikunja.io/desktop",
"license": "GPL-3.0-or-later",
"author": {
"email": "maintainers@vikunja.io",
"name": "Vikunja Team"
},
"homepage": "https://vikunja.io",
"scripts": {
"start": "electron .",
"pack": "electron-builder --dir",
"dist": "electron-builder"
},
"build": {
"appId": "io.vikunja.desktop",
"productName": "Vikunja Desktop",
"artifactName": "${productName}-${version}.${ext}",
"icon": "build/icon.icns",
"linux": {
"target": [
"deb",
"AppImage",
"snap",
"pacman",
"apk",
"freebsd",
"rpm",
"zip",
"tar.gz"
],
"category": "Productivity"
},
"win": {
"target": [
"nsis",
"portable",
"msi",
"zip"
]
},
"mac": {
"category": "public.app-category.productivity",
"target": [
"dmg",
"zip"
]
}
},
"devDependencies": {
"electron": "16.0.2",
"electron-builder": "22.14.5"
},
"dependencies": {
"connect-history-api-fallback": "^1.6.0",
"express": "^4.17.1"
}
}