mirror of
https://github.com/dergigi/boris.git
synced 2026-01-11 19:04:21 +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.
107 lines
2.9 KiB
JSON
107 lines
2.9 KiB
JSON
{
|
|
"name": "@scure/bip39",
|
|
"version": "1.6.0",
|
|
"description": "Secure, audited & minimal implementation of BIP39 mnemonic phrases",
|
|
"files": [
|
|
"index.js",
|
|
"index.d.ts",
|
|
"wordlists/*.js",
|
|
"wordlists/*.d.ts",
|
|
"esm",
|
|
"src/index.ts"
|
|
],
|
|
"dependencies": {
|
|
"@noble/hashes": "~1.8.0",
|
|
"@scure/base": "~1.2.5"
|
|
},
|
|
"devDependencies": {
|
|
"@paulmillr/jsbt": "0.3.3",
|
|
"micro-bmark": "0.4.1",
|
|
"micro-should": "0.5.2",
|
|
"prettier": "3.5.3",
|
|
"typescript": "5.8.3"
|
|
},
|
|
"author": "Paul Miller (https://paulmillr.com)",
|
|
"homepage": "https://paulmillr.com/",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/paulmillr/scure-bip39.git"
|
|
},
|
|
"license": "MIT",
|
|
"scripts": {
|
|
"build": "tsc && tsc -p tsconfig.cjs.json",
|
|
"build:release": "npx jsbt esbuild test/build",
|
|
"lint": "prettier --check 'src/**/*.ts' 'test/*.test.ts' 'scripts/*.js'",
|
|
"format": "prettier --write 'src/**/*.ts' 'test/*.test.ts' 'scripts/*.js'",
|
|
"test": "node test/index.js",
|
|
"test:bun": "bun test/index.js",
|
|
"test:deno": "deno --allow-env --allow-read test/index.js",
|
|
"fetch-wordlist": "./scripts/fetch-wordlist.js"
|
|
},
|
|
"sideEffects": false,
|
|
"main": "index.js",
|
|
"types": "./index.d.ts",
|
|
"exports": {
|
|
".": {
|
|
"import": "./esm/index.js",
|
|
"require": "./index.js"
|
|
},
|
|
"./index": {
|
|
"import": "./esm/index.js",
|
|
"require": "./index.js"
|
|
},
|
|
"./wordlists/czech": {
|
|
"import": "./esm/wordlists/czech.js",
|
|
"require": "./wordlists/czech.js"
|
|
},
|
|
"./wordlists/english": {
|
|
"import": "./esm/wordlists/english.js",
|
|
"require": "./wordlists/english.js"
|
|
},
|
|
"./wordlists/french": {
|
|
"import": "./esm/wordlists/french.js",
|
|
"require": "./wordlists/french.js"
|
|
},
|
|
"./wordlists/italian": {
|
|
"import": "./esm/wordlists/italian.js",
|
|
"require": "./wordlists/italian.js"
|
|
},
|
|
"./wordlists/japanese": {
|
|
"import": "./esm/wordlists/japanese.js",
|
|
"require": "./wordlists/japanese.js"
|
|
},
|
|
"./wordlists/korean": {
|
|
"import": "./esm/wordlists/korean.js",
|
|
"require": "./wordlists/korean.js"
|
|
},
|
|
"./wordlists/portuguese": {
|
|
"import": "./esm/wordlists/portuguese.js",
|
|
"require": "./wordlists/portuguese.js"
|
|
},
|
|
"./wordlists/simplified-chinese": {
|
|
"import": "./esm/wordlists/simplified-chinese.js",
|
|
"require": "./wordlists/simplified-chinese.js"
|
|
},
|
|
"./wordlists/spanish": {
|
|
"import": "./esm/wordlists/spanish.js",
|
|
"require": "./wordlists/spanish.js"
|
|
},
|
|
"./wordlists/traditional-chinese": {
|
|
"import": "./esm/wordlists/traditional-chinese.js",
|
|
"require": "./wordlists/traditional-chinese.js"
|
|
}
|
|
},
|
|
"keywords": [
|
|
"bip39",
|
|
"mnemonic",
|
|
"phrase",
|
|
"code",
|
|
"bip0039",
|
|
"bip-39",
|
|
"wordlist",
|
|
"scure",
|
|
"noble"
|
|
],
|
|
"funding": "https://paulmillr.com/funding/"
|
|
}
|