CodeNomad/packages/opencode-plugin/package.json
Shantur Rathore 3de5ecb7e9 build: publish linux flatpak deb and rpm artifacts
Restore Tauri Debian and RPM assets while adding Flatpak outputs for both desktop variants so Linux users have package-manager and sandboxed alternatives to AppImage.

Electron Flatpak packaging now installs the required Freedesktop runtime in CI, and Tauri Flatpak packaging uses a generated manifest around the existing release binary and packaged resources. The Linux dependency list also includes xdg-utils because Tauri AppImage bundling requires xdg-open.

Docker-based Ubuntu 24.04 reproductions verified Electron zip/AppImage creation and Tauri AppImage/deb/rpm creation. Local Docker could not complete Flatpak builds because bubblewrap cannot create/seccomp namespaces in this host container environment, which should not apply to native GitHub runners.
2026-05-20 22:16:25 +01:00

22 lines
498 B
JSON

{
"name": "@codenomad/codenomad-opencode-plugin",
"version": "0.16.0",
"private": true,
"license": "MIT",
"type": "module",
"main": "dist/codenomad.js",
"files": [
"dist",
"README.md"
],
"scripts": {
"build": "node -e \"require('fs').rmSync('dist',{recursive:true,force:true})\" && npm exec -- tsc -p tsconfig.json"
},
"dependencies": {
"@opencode-ai/plugin": "1.3.7"
},
"devDependencies": {
"@types/node": "^22.18.0",
"typescript": "^5.6.3"
}
}