mirror of
https://github.com/go-vikunja/vikunja.git
synced 2026-03-12 01:59:34 -05:00
This PR contains the following updates: | Package | Change | [Age](https://docs.renovatebot.com/merge-confidence/) | [Confidence](https://docs.renovatebot.com/merge-confidence/) | |---|---|---|---| | [electron-builder](https://redirect.github.com/electron-userland/electron-builder) ([source](https://redirect.github.com/electron-userland/electron-builder/tree/HEAD/packages/electron-builder)) | [`26.8.0` → `26.8.1`](https://renovatebot.com/diffs/npm/electron-builder/26.8.0/26.8.1) |  |  | | [happy-dom](https://redirect.github.com/capricorn86/happy-dom) | [`20.6.1` → `20.6.2`](https://renovatebot.com/diffs/npm/happy-dom/20.6.1/20.6.2) |  |  | --- ### Release Notes <details> <summary>electron-userland/electron-builder (electron-builder)</summary> ### [`v26.8.1`](https://redirect.github.com/electron-userland/electron-builder/blob/HEAD/packages/electron-builder/CHANGELOG.md#2681) [Compare Source](https://redirect.github.com/electron-userland/electron-builder/compare/electron-builder@26.8.0...electron-builder@26.8.1) ##### Patch Changes <details><summary>Updated 3 dependencies</summary> <small> [`4edd695`](4edd695045) [`8940ec6`](8940ec63ba) [`4edd695`](4edd695045) [`dde4309`](dde4309b91) </small> - `app-builder-lib@26.8.1` - `builder-util@26.8.1` - `dmg-builder@26.8.1` </details> </details> <details> <summary>capricorn86/happy-dom (happy-dom)</summary> ### [`v20.6.2`](https://redirect.github.com/capricorn86/happy-dom/releases/tag/v20.6.2) [Compare Source](https://redirect.github.com/capricorn86/happy-dom/compare/v20.6.1...v20.6.2) ##### :construction\_worker\_man: Patch fixes - Update entities package version to resolve missing export for vue and vue-compat v3.5 - By **[@​acollins1991](https://redirect.github.com/acollins1991)** in task [#​2066](https://redirect.github.com/capricorn86/happy-dom/issues/2066) </details> --- ### Configuration 📅 **Schedule**: Branch creation - Between 12:00 AM and 03:59 AM ( * 0-3 * * * ) (UTC), 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. 👻 **Immortal**: This PR will be recreated if closed unmerged. Get [config help](https://redirect.github.com/renovatebot/renovate/discussions) if that's undesired. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR was generated by [Mend Renovate](https://mend.io/renovate/). View the [repository job log](https://developer.mend.io/github/go-vikunja/vikunja). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0My4yMi4wIiwidXBkYXRlZEluVmVyIjoiNDMuMjIuMCIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOlsiZGVwZW5kZW5jaWVzIl19--> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
68 lines
1.4 KiB
JSON
68 lines
1.4 KiB
JSON
{
|
|
"name": "vikunja-desktop",
|
|
"version": "v0.1.0",
|
|
"description": "Vikunja's frontend as a standalone desktop application.",
|
|
"main": "main.js",
|
|
"repository": "https://code.vikunja.io/desktop",
|
|
"license": "GPL-3.0-or-later",
|
|
"packageManager": "pnpm@10.28.1",
|
|
"author": {
|
|
"email": "maintainers@vikunja.io",
|
|
"name": "Vikunja Team"
|
|
},
|
|
"homepage": "https://vikunja.io",
|
|
"scripts": {
|
|
"start": "electron .",
|
|
"pack": "electron-builder --dir",
|
|
"dist": "electron-builder --publish never"
|
|
},
|
|
"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": "40.4.1",
|
|
"electron-builder": "26.8.1",
|
|
"unzipper": "0.12.3"
|
|
},
|
|
"dependencies": {
|
|
"express": "5.2.1"
|
|
},
|
|
"pnpm": {
|
|
"onlyBuiltDependencies": [
|
|
"electron"
|
|
]
|
|
}
|
|
}
|