Files
boris/node_modules/applesauce-react/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

79 lines
1.9 KiB
JSON

{
"name": "applesauce-react",
"version": "3.1.0",
"description": "React hooks for applesauce",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"keywords": [
"nostr",
"react",
"applesauce"
],
"author": "hzrd149",
"license": "MIT",
"files": [
"dist",
"applesauce"
],
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"./hooks": {
"import": "./dist/hooks/index.js",
"require": "./dist/hooks/index.js",
"types": "./dist/hooks/index.d.ts"
},
"./hooks/*": {
"import": "./dist/hooks/*.js",
"require": "./dist/hooks/*.js",
"types": "./dist/hooks/*.d.ts"
},
"./providers": {
"import": "./dist/providers/index.js",
"require": "./dist/providers/index.js",
"types": "./dist/providers/index.d.ts"
},
"./providers/*": {
"import": "./dist/providers/*.js",
"require": "./dist/providers/*.js",
"types": "./dist/providers/*.d.ts"
},
"./helpers": {
"import": "./dist/helpers/index.js",
"require": "./dist/helpers/index.js",
"types": "./dist/helpers/index.d.ts"
}
},
"dependencies": {
"applesauce-accounts": "^3.1.0",
"applesauce-actions": "^3.1.0",
"applesauce-content": "^3.1.0",
"applesauce-core": "^3.1.0",
"applesauce-factory": "^3.1.0",
"hash-sum": "^2.0.0",
"nostr-tools": "~2.15",
"observable-hooks": "^4.2.4",
"react": "^18.3.1",
"rxjs": "^7.8.1"
},
"devDependencies": {
"@types/hash-sum": "^1.0.2",
"@types/react": "^18.3.18",
"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"
}
}