mirror of
https://github.com/NeuralNomadsAI/CodeNomad.git
synced 2026-07-10 00:14:27 +00:00
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.
22 lines
498 B
JSON
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"
|
|
}
|
|
}
|