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

61 lines
1.3 KiB
JSON
Raw Normal View History

2020-07-19 19:42:18 +00:00
{
"name": "vikunja-desktop",
2021-01-26 18:05:29 +00:00
"version": "0.16.0-dev",
"description": "Vikunja's frontend as a standalone desktop application.",
2020-10-17 15:40:20 +00:00
"main": "main.js",
2020-07-19 19:42:18 +00:00
"repository": "https://code.vikunja.io/desktop",
2020-10-10 18:48:37 +00:00
"license": "GPL-3.0-or-later",
"author": {
"email": "maintainers@vikunja.io",
"name": "Vikunja Team"
},
"homepage": "https://vikunja.io",
2020-07-19 19:53:14 +00:00
"scripts": {
2020-10-17 15:40:20 +00:00
"start": "electron .",
"pack": "electron-builder --dir",
"dist": "electron-builder"
2020-07-19 20:15:00 +00:00
},
"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"
2020-07-19 20:15:00 +00:00
]
}
},
"devDependencies": {
chore(deps): update dependency electron to v23.2.0 (#143) This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [electron](https://github.com/electron/electron) | devDependencies | minor | [`23.1.4` -> `23.2.0`](https://renovatebot.com/diffs/npm/electron/23.1.4/23.2.0) | --- ### Release Notes <details> <summary>electron/electron</summary> ### [`v23.2.0`](https://github.com/electron/electron/releases/tag/v23.2.0): electron v23.2.0 [Compare Source](https://github.com/electron/electron/compare/v23.1.4...v23.2.0) ### Release Notes for v23.2.0 #### Features - Added the `enableLocalEcho` flag to the session handler `ses.setDisplayMediaRequestHandler()` callback for allowing remote audio input to be echoed in the local output stream when `audio` is a `WebFrameMain`. [#&#8203;37529](https://github.com/electron/electron/pull/37529) <span style="font-size:small;">(Also in [24](https://github.com/electron/electron/pull/37528))</span> #### Fixes - Fixed an issue where `BroadcastChannel` did not work correctly when `contextIsolation: false`. [#&#8203;37444](https://github.com/electron/electron/pull/37444) <span style="font-size:small;">(Also in [24](https://github.com/electron/electron/pull/37443))</span> - Fixed an issue with potential dock icon duplication on macOS. [#&#8203;37624](https://github.com/electron/electron/pull/37624) <span style="font-size:small;">(Also in [22](https://github.com/electron/electron/pull/37623), [24](https://github.com/electron/electron/pull/37625))</span> - Fixed issue with BrowserWindow not updating after call to previewFile. [#&#8203;37577](https://github.com/electron/electron/pull/37577) <span style="font-size:small;">(Also in [22](https://github.com/electron/electron/pull/37576), [24](https://github.com/electron/electron/pull/37578))</span> - Improved error messages on `session.cookies.set` failure. [#&#8203;37596](https://github.com/electron/electron/pull/37596) <span style="font-size:small;">(Also in [22](https://github.com/electron/electron/pull/37595), [24](https://github.com/electron/electron/pull/37597))</span> </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - 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). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNC4xNTcuMCIsInVwZGF0ZWRJblZlciI6IjM0LjE1Ny4wIn0=--> Reviewed-on: https://kolaente.dev/vikunja/desktop/pulls/143 Co-authored-by: renovate <renovatebot@kolaente.de> Co-committed-by: renovate <renovatebot@kolaente.de>
2023-03-23 11:49:53 +00:00
"electron": "23.2.0",
"electron-builder": "23.6.0"
2020-10-17 16:30:49 +00:00
},
"dependencies": {
2020-10-17 17:54:02 +00:00
"connect-history-api-fallback": "^1.6.0",
2020-10-17 16:30:49 +00:00
"express": "^4.17.1"
2020-07-19 19:42:18 +00:00
}
}