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

78 lines
1.9 KiB
JSON

{
"name": "applesauce-content",
"version": "3.1.0",
"description": "Unified plugins for processing event content",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"keywords": [
"nostr",
"applesauce"
],
"author": "hzrd149",
"license": "MIT",
"files": [
"dist",
"applesauce"
],
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"./helpers": {
"import": "./dist/helpers/index.js",
"require": "./dist/helpers/index.js",
"types": "./dist/helpers/index.d.ts"
},
"./helpers/*": {
"import": "./dist/helpers/*.js",
"require": "./dist/helpers/*.js",
"types": "./dist/helpers/*.d.ts"
},
"./nast": {
"import": "./dist/nast/index.js",
"require": "./dist/nast/index.js",
"types": "./dist/nast/index.d.ts"
},
"./markdown": {
"import": "./dist/markdown/index.js",
"require": "./dist/markdown/index.js",
"types": "./dist/markdown/index.d.ts"
},
"./text": {
"import": "./dist/text/index.js",
"require": "./dist/text/index.js",
"types": "./dist/text/index.d.ts"
}
},
"dependencies": {
"@cashu/cashu-ts": "2.0.0-rc1",
"@types/hast": "^3.0.4",
"@types/mdast": "^4.0.4",
"@types/unist": "^3.0.3",
"applesauce-core": "^3.1.0",
"mdast-util-find-and-replace": "^3.0.2",
"nostr-tools": "~2.15",
"remark": "^15.0.1",
"remark-parse": "^11.0.0",
"unified": "^11.0.5",
"unist-util-visit-parents": "^6.0.1"
},
"devDependencies": {
"typescript": "^5.8.3",
"applesauce-signers": "^3.1.0",
"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"
}
}