mirror of
https://github.com/dergigi/boris.git
synced 2025-12-24 10:04:19 +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.
39 lines
804 B
JSON
39 lines
804 B
JSON
{
|
|
"name": "convert-source-map",
|
|
"version": "2.0.0",
|
|
"description": "Converts a source-map from/to different formats and allows adding/changing properties.",
|
|
"main": "index.js",
|
|
"scripts": {
|
|
"test": "tap test/*.js --color"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git://github.com/thlorenz/convert-source-map.git"
|
|
},
|
|
"homepage": "https://github.com/thlorenz/convert-source-map",
|
|
"devDependencies": {
|
|
"inline-source-map": "~0.6.2",
|
|
"tap": "~9.0.0"
|
|
},
|
|
"keywords": [
|
|
"convert",
|
|
"sourcemap",
|
|
"source",
|
|
"map",
|
|
"browser",
|
|
"debug"
|
|
],
|
|
"author": {
|
|
"name": "Thorsten Lorenz",
|
|
"email": "thlorenz@gmx.de",
|
|
"url": "http://thlorenz.com"
|
|
},
|
|
"license": "MIT",
|
|
"engine": {
|
|
"node": ">=4"
|
|
},
|
|
"files": [
|
|
"index.js"
|
|
]
|
|
}
|