Some checks failed
Go / build-and-release (push) Has been cancelled
- Add bunker-service.js: NIP-46 signer that handles signing requests from remote clients - Add cashu-client.js: Cashu token minting for bunker authorization - Update BunkerView.svelte: Add Start/Stop service toggle, CAT token generation, status indicator - Update App.svelte: Pass userPrivkey to BunkerView for signing - Add @noble/curves and @noble/hashes dependencies - Include CAT token in bunker URL format: bunker://<pubkey>?relay=...&secret=...&cat=... - Improve PWA manifest with maskable icons Files modified: - app/web/src/bunker-service.js: NEW - NIP-46 signer implementation - app/web/src/cashu-client.js: NEW - Cashu token minting client - app/web/src/BunkerView.svelte: Add service controls and CAT integration - app/web/src/App.svelte: Add userPrivkey state and prop - app/web/package.json: Add noble crypto dependencies - app/web/public/manifest.json: Add maskable icon variants - pkg/version/version: Bump to v0.44.0 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
35 lines
920 B
JSON
35 lines
920 B
JSON
{
|
|
"name": "svelte-app",
|
|
"version": "1.0.0",
|
|
"private": true,
|
|
"type": "module",
|
|
"scripts": {
|
|
"fetch-kinds": "node scripts/fetch-kinds.js",
|
|
"prebuild": "npm run fetch-kinds",
|
|
"build": "rollup -c",
|
|
"dev": "rollup -c -w",
|
|
"start": "sirv public --no-clear --single"
|
|
},
|
|
"devDependencies": {
|
|
"@rollup/plugin-commonjs": "^24.0.0",
|
|
"@rollup/plugin-node-resolve": "^15.0.0",
|
|
"@rollup/plugin-terser": "^0.4.0",
|
|
"rollup": "^3.15.0",
|
|
"rollup-plugin-copy": "^3.5.0",
|
|
"rollup-plugin-css-only": "^4.3.0",
|
|
"rollup-plugin-livereload": "^2.0.0",
|
|
"rollup-plugin-svelte": "^7.1.2",
|
|
"svelte": "^3.55.0"
|
|
},
|
|
"dependencies": {
|
|
"@noble/curves": "^1.4.0",
|
|
"@noble/hashes": "^1.4.0",
|
|
"applesauce-core": "^4.4.2",
|
|
"applesauce-signers": "^4.2.0",
|
|
"hash-wasm": "^4.12.0",
|
|
"nostr-tools": "^2.17.0",
|
|
"qrcode": "^1.5.3",
|
|
"sirv-cli": "^2.0.0"
|
|
}
|
|
}
|