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

87 lines
2.2 KiB
JSON

{
"name": "applesauce-core",
"version": "3.1.0",
"description": "",
"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"
},
"./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"
},
"./models": {
"import": "./dist/models/index.js",
"require": "./dist/models/index.js",
"types": "./dist/models/index.d.ts"
},
"./models/*": {
"import": "./dist/models/*.js",
"require": "./dist/models/*.js",
"types": "./dist/models/*.d.ts"
},
"./observable": {
"import": "./dist/observable/index.js",
"require": "./dist/observable/index.js",
"types": "./dist/observable/index.d.ts"
},
"./promise": {
"import": "./dist/promise/index.js",
"require": "./dist/promise/index.js",
"types": "./dist/promise/index.d.ts"
},
"./event-store": {
"import": "./dist/event-store/index.js",
"require": "./dist/event-store/index.js",
"types": "./dist/event-store/index.d.ts"
}
},
"dependencies": {
"@noble/hashes": "^1.7.1",
"@scure/base": "^1.2.4",
"debug": "^4.4.0",
"fast-deep-equal": "^3.1.3",
"hash-sum": "^2.0.0",
"light-bolt11-decoder": "^3.2.0",
"nanoid": "^5.0.9",
"nostr-tools": "~2.15",
"rxjs": "^7.8.1"
},
"devDependencies": {
"@hirez_io/observer-spy": "^2.2.0",
"@types/debug": "^4.1.12",
"@types/hash-sum": "^1.0.2",
"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"
}
}