mirror of
https://github.com/dergigi/boris.git
synced 2026-01-15 04:44:24 +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.
94 lines
2.4 KiB
JSON
94 lines
2.4 KiB
JSON
{
|
|
"name": "applesauce-factory",
|
|
"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",
|
|
"applesauce"
|
|
],
|
|
"exports": {
|
|
".": {
|
|
"import": "./dist/index.js",
|
|
"require": "./dist/index.js",
|
|
"types": "./dist/index.d.ts"
|
|
},
|
|
"./blueprints": {
|
|
"import": "./dist/blueprints/index.js",
|
|
"require": "./dist/blueprints/index.js",
|
|
"types": "./dist/blueprints/index.d.ts"
|
|
},
|
|
"./blueprints/*": {
|
|
"import": "./dist/blueprints/*.js",
|
|
"require": "./dist/blueprints/*.js",
|
|
"types": "./dist/blueprints/*.d.ts"
|
|
},
|
|
"./operations": {
|
|
"import": "./dist/operations/index.js",
|
|
"require": "./dist/operations/index.js",
|
|
"types": "./dist/operations/index.d.ts"
|
|
},
|
|
"./operations/tag": {
|
|
"import": "./dist/operations/tag/index.js",
|
|
"require": "./dist/operations/tag/index.js",
|
|
"types": "./dist/operations/tag/index.d.ts"
|
|
},
|
|
"./operations/tag/*": {
|
|
"import": "./dist/operations/tag/*.js",
|
|
"require": "./dist/operations/tag/*.js",
|
|
"types": "./dist/operations/tag/*.d.ts"
|
|
},
|
|
"./operations/*": {
|
|
"import": "./dist/operations/*.js",
|
|
"require": "./dist/operations/*.js",
|
|
"types": "./dist/operations/*.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"
|
|
},
|
|
"./event-factory": {
|
|
"import": "./dist/event-factory.js",
|
|
"require": "./dist/event-factory.js",
|
|
"types": "./dist/event-factory.d.ts"
|
|
}
|
|
},
|
|
"dependencies": {
|
|
"applesauce-content": "^3.1.0",
|
|
"applesauce-core": "^3.1.0",
|
|
"nanoid": "^5.0.9",
|
|
"nostr-tools": "^2.13"
|
|
},
|
|
"devDependencies": {
|
|
"@types/jest": "^29.5.14",
|
|
"@types/node": "^22.13.1",
|
|
"@vitest/coverage-v8": "2.1.8",
|
|
"applesauce-signers": "^3.1.0",
|
|
"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",
|
|
"watch:test": "vitest"
|
|
}
|
|
} |