mirror of
https://github.com/dergigi/boris.git
synced 2025-12-29 04:24:34 +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.
58 lines
1.3 KiB
JSON
58 lines
1.3 KiB
JSON
{
|
|
"name": "applesauce-actions",
|
|
"version": "3.1.0",
|
|
"description": "A package for performing common nostr actions",
|
|
"type": "module",
|
|
"main": "dist/index.js",
|
|
"types": "dist/index.d.ts",
|
|
"keywords": [
|
|
"nostr",
|
|
"applesauce"
|
|
],
|
|
"author": "hzrd149",
|
|
"license": "MIT",
|
|
"files": [
|
|
"dist"
|
|
],
|
|
"exports": {
|
|
".": {
|
|
"import": "./dist/index.js",
|
|
"require": "./dist/index.js",
|
|
"types": "./dist/index.d.ts"
|
|
},
|
|
"./actions": {
|
|
"import": "./dist/actions/index.js",
|
|
"require": "./dist/actions/index.js",
|
|
"types": "./dist/actions/index.d.ts"
|
|
},
|
|
"./actions/*": {
|
|
"import": "./dist/actions/*.js",
|
|
"require": "./dist/actions/*.js",
|
|
"types": "./dist/actions/*.d.ts"
|
|
}
|
|
},
|
|
"dependencies": {
|
|
"applesauce-core": "^3.1.0",
|
|
"applesauce-factory": "^3.1.0",
|
|
"nostr-tools": "~2.15",
|
|
"rxjs": "^7.8.1"
|
|
},
|
|
"devDependencies": {
|
|
"@hirez_io/observer-spy": "^2.2.0",
|
|
"@types/debug": "^4.1.12",
|
|
"applesauce-signers": "^3.1.0",
|
|
"nanoid": "^5.1.5",
|
|
"typescript": "^5.8.3",
|
|
"vitest": "^3.2.3"
|
|
},
|
|
"funding": {
|
|
"type": "lightning",
|
|
"url": "lightning:nostrudel@geyser.fund"
|
|
},
|
|
"scripts": {
|
|
"build": "tsc",
|
|
"watch:build": "tsc --watch > /dev/null",
|
|
"test": "vitest run --passWithNoTests",
|
|
"watch:test": "vitest"
|
|
}
|
|
} |