mirror of
https://github.com/dergigi/boris.git
synced 2025-12-24 10:04:19 +01:00
- 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.
62 lines
1.5 KiB
JSON
62 lines
1.5 KiB
JSON
{
|
|
"name": "@scure/bip32",
|
|
"version": "1.7.0",
|
|
"description": "Secure, audited & minimal implementation of BIP32 hierarchical deterministic (HD) wallets over secp256k1",
|
|
"files": [
|
|
"index.ts",
|
|
"./lib"
|
|
],
|
|
"main": "./lib/index.js",
|
|
"module": "./lib/esm/index.js",
|
|
"types": "./lib/index.d.ts",
|
|
"exports": {
|
|
".": {
|
|
"import": "./lib/esm/index.js",
|
|
"require": "./lib/index.js"
|
|
}
|
|
},
|
|
"dependencies": {
|
|
"@noble/curves": "~1.9.0",
|
|
"@noble/hashes": "~1.8.0",
|
|
"@scure/base": "~1.2.5"
|
|
},
|
|
"devDependencies": {
|
|
"@paulmillr/jsbt": "0.3.3",
|
|
"micro-should": "0.5.2",
|
|
"prettier": "3.5.3",
|
|
"typescript": "5.8.3"
|
|
},
|
|
"sideEffects": false,
|
|
"author": "Paul Miller (https://paulmillr.com)",
|
|
"homepage": "https://paulmillr.com/noble/#scure",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/paulmillr/scure-bip32.git"
|
|
},
|
|
"license": "MIT",
|
|
"scripts": {
|
|
"build": "tsc && tsc -p tsconfig.cjs.json",
|
|
"build:release": "npx jsbt esbuild test/build",
|
|
"lint": "prettier --check 'index.ts' 'test/*.test.ts'",
|
|
"format": "prettier --write 'index.ts' 'test/*.test.ts'",
|
|
"test": "node test/index.js",
|
|
"test:bun": "bun test/index.js",
|
|
"test:deno": "deno --allow-env --allow-read test/index.js"
|
|
},
|
|
"keywords": [
|
|
"bip32",
|
|
"hierarchical",
|
|
"deterministic",
|
|
"hd key",
|
|
"bip0032",
|
|
"bip-32",
|
|
"bip39",
|
|
"micro",
|
|
"scure",
|
|
"mnemonic",
|
|
"phrase",
|
|
"code"
|
|
],
|
|
"funding": "https://paulmillr.com/funding/"
|
|
}
|