Eve/package.json
Danny Morabito 18e4ad7629
📚 Enhance project setup & maintenance workflows
- 📝 Add comprehensive README.md, CONTRIBUTING.md, and 🔒 SECURITY.md documentation
- 🔧 Integrate code formatting tool and refactor existing codebase to meet style guidelines
- ⬆️ Update project dependencies to latest stable versions
- 🤖 Implement pre-commit hook for automated code formatting

#documentation #tooling #maintenance
2025-03-10 17:14:09 +01:00

52 lines
1.5 KiB
JSON

{
"name": "eve",
"description": "Closed Community Networks",
"version": "0.0.1",
"type": "module",
"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": {
"build": "tsc && electron-vite build",
"build:mac": "npm run build && ./node_modules/.bin/electron-rebuild -p darwin -a x64 && electron-builder --mac",
"build:linux": "bun run build && electron-builder --linux",
"start": "electron-vite preview",
"dev": "electron-vite dev",
"prebuild": "electron-vite build",
"lint": "biome check",
"lint:fix": "biome check --write --unsafe",
"postinstall": "bun setup-hooks.js"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@electron-toolkit/preload": "^3.0.1",
"@electron-toolkit/utils": "^4.0.0",
"@tsconfig/node22": "^22.0.0",
"@types/markdown-it": "^14.1.2",
"@types/node": "^22.13.10",
"electron": "^34.3.2",
"electron-builder": "^25.1.8",
"electron-vite": "^3.0.0",
"lightningcss": "^1.29.2",
"sass-embedded": "^1.85.1",
"typescript": "~5.6.3",
"vite": "^6.2.1"
},
"dependencies": {
"@lit-labs/motion": "^1.0.8",
"@noble/ciphers": "^1.2.1",
"@nostr-dev-kit/ndk": "^2.12.2",
"@nostr/tools": "npm:@jsr/nostr__tools",
"@open-wc/lit-helpers": "^0.7.0",
"@std/encoding": "npm:@jsr/std__encoding",
"lit": "^3.2.1",
"markdown-it": "^14.1.0"
}
}