Files
boris/node_modules/applesauce-signers/package.json
Gigi 5d53a827e0 feat: initialize markr nostr bookmark client
- Add project structure with TypeScript, React, and Vite
- Implement nostr authentication using browser extension (NIP-07)
- Add NIP-51 compliant bookmark fetching and display
- Create minimal UI with login and bookmark components
- Integrate applesauce-core and applesauce-react libraries
- Add responsive styling with dark/light mode support
- Include comprehensive README with setup instructions

This is a minimal MVP for a nostr bookmark client that allows users to
view their bookmarks according to NIP-51 specification.
2025-10-02 07:17:07 +02:00

64 lines
1.4 KiB
JSON

{
"name": "applesauce-signers",
"version": "3.1.0",
"description": "Signer classes for applesauce",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"keywords": [
"nostr",
"signer",
"nostr-connect",
"applesauce"
],
"author": "hzrd149",
"license": "MIT",
"files": [
"dist",
"applesauce"
],
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"./signers": {
"import": "./dist/signers/index.js",
"require": "./dist/signers/index.js",
"types": "./dist/signers/index.d.ts"
},
"./signers/*": {
"import": "./dist/signers/*.js",
"require": "./dist/signers/*.js",
"types": "./dist/signers/*.d.ts"
}
},
"dependencies": {
"@noble/hashes": "^1.7.1",
"@noble/secp256k1": "^1.7.1",
"@scure/base": "^1.2.4",
"applesauce-core": "^3.1.0",
"debug": "^4.4.0",
"nanoid": "^5.0.9",
"nostr-tools": "~2.15",
"rxjs": "^7.8.2"
},
"devDependencies": {
"@types/debug": "^4.1.12",
"@types/dom-serial": "^1.0.6",
"typescript": "^5.8.3",
"vitest": "^3.1.3",
"vitest-websocket-mock": "^0.5.0"
},
"funding": {
"type": "lightning",
"url": "lightning:nostrudel@geyser.fund"
},
"scripts": {
"build": "tsc",
"watch:build": "tsc --watch > /dev/null",
"test": "vitest run --passWithNoTests",
"watch:test": "vitest"
}
}