📦 Add Linux packaging (AppImage/Flatpak/DEB)

🧹 Minor Codebase cleanup
 Implement automatic starting of the relay
This commit is contained in:
Danny Morabito 2025-02-24 21:48:11 +01:00
parent 89fcaa9aa6
commit f402ff04ab
Signed by: dannym
GPG key ID: 7CC8056A5A04557E
19 changed files with 519 additions and 119 deletions

View file

@ -1,16 +1,31 @@
{
"name": "eve",
"private": true,
"version": "0.0.0",
"description": "Closed Community Networks",
"version": "0.0.1",
"type": "module",
"browserslist": ["not dead"],
"license": "AGPL-3.0-only",
"browserslist": [
"electron >= 22.0.0"
],
"main": "./out/main/main.js",
"homepage": "https://arx-ccn.com/eve",
"author": {
"name": "arx-ccn",
"email": "developers@arx-ccn.com"
},
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview"
"build": "tsc && electron-vite build",
"build:linux": "bun run build && electron-builder --linux",
"start": "electron-vite preview",
"dev": "electron-vite dev",
"prebuild": "electron-vite build"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@electron-toolkit/preload": "^3.0.1",
"@electron-toolkit/utils": "^4.0.0",
"electron-builder": "^25.1.8",
"electron-vite": "^3.0.0",
"electron": "^34.2.0",
"@tsconfig/node22": "^22.0.0",
"@types/markdown-it": "^14.1.2",
"@types/node": "^22.10.2",
@ -21,11 +36,13 @@
},
"dependencies": {
"@lit-labs/motion": "^1.0.8",
"@noble/ciphers": "^1.2.1",
"@nostr-dev-kit/ndk": "^2.10.7",
"@nostr/tools": "npm:@jsr/nostr__tools",
"@open-wc/lit-helpers": "^0.7.0",
"@std/encoding": "npm:@jsr/std__encoding",
"iconify-icon": "^2.2.0",
"lit": "^3.2.1",
"markdown-it": "^14.1.0",
"nostr-tools": "^2.10.4"
"markdown-it": "^14.1.0"
}
}