- ONION-URLS.md: static registry of all 43 hidden services (port, role, app path) - scripts/export-onion-urls.sh: writes live .onion addresses to onion-urls.txt at runtime - npm run onions:export shortcut added to package.json - onion-urls.txt added to .gitignore (runtime artifact, not source) - README: cohesive rewrite — architecture diagram, operator command table, source-of-truth map, BTCPay notes, full site map, common fixes - BTCPay status route: awaited params destructuring (Next 15 async params) Made-with: Cursor
32 lines
972 B
JSON
32 lines
972 B
JSON
{
|
|
"name": "cyberlux",
|
|
"version": "0.1.0",
|
|
"private": true,
|
|
"scripts": {
|
|
"prebuild": "node scripts/prebuild-clean-next.cjs && node scripts/generate-onion-config.cjs",
|
|
"verify": "node scripts/verify.cjs",
|
|
"dev": "next dev",
|
|
"build": "next build",
|
|
"start": "next start",
|
|
"start:onion": "next start -H 127.0.0.1 -p 3000",
|
|
"health:stack": "bash scripts/health-check-stack.sh",
|
|
"onions:status": "node scripts/onion-status.cjs",
|
|
"onions:list": "bash scripts/list-onion-urls.sh",
|
|
"install:systemd": "bash -c 'echo Run: sudo CYBERLUX_USER=$USER bash scripts/install-systemd.sh'",
|
|
"onions:export": "bash scripts/export-onion-urls.sh"
|
|
},
|
|
"dependencies": {
|
|
"next": "16.1.7",
|
|
"react": "19.2.3",
|
|
"react-dom": "19.2.3"
|
|
},
|
|
"devDependencies": {
|
|
"@tailwindcss/postcss": "^4",
|
|
"@types/node": "^20",
|
|
"@types/react": "^19",
|
|
"@types/react-dom": "^19",
|
|
"tailwindcss": "^4",
|
|
"typescript": "^5"
|
|
}
|
|
}
|