mirror of
https://github.com/dergigi/boris.git
synced 2025-12-27 19:44:40 +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.
45 lines
1.2 KiB
JavaScript
45 lines
1.2 KiB
JavaScript
"use strict";
|
|
|
|
Object.defineProperty(exports, "__esModule", {
|
|
value: true
|
|
});
|
|
exports.default = _interopRequireWildcard;
|
|
function _interopRequireWildcard(obj, nodeInterop) {
|
|
if (typeof WeakMap === "function") {
|
|
var cacheBabelInterop = new WeakMap();
|
|
var cacheNodeInterop = new WeakMap();
|
|
}
|
|
return (exports.default = _interopRequireWildcard = function (obj, nodeInterop) {
|
|
if (!nodeInterop && obj && obj.__esModule) {
|
|
return obj;
|
|
}
|
|
var _;
|
|
var newObj = {
|
|
__proto__: null,
|
|
default: obj
|
|
};
|
|
var desc;
|
|
if (obj === null || typeof obj !== "object" && typeof obj !== "function") {
|
|
return newObj;
|
|
}
|
|
_ = nodeInterop ? cacheNodeInterop : cacheBabelInterop;
|
|
if (_) {
|
|
if (_.has(obj)) return _.get(obj);
|
|
_.set(obj, newObj);
|
|
}
|
|
for (const key in obj) {
|
|
if (key !== "default" && {}.hasOwnProperty.call(obj, key)) {
|
|
desc = (_ = Object.defineProperty) && Object.getOwnPropertyDescriptor(obj, key);
|
|
if (desc && (desc.get || desc.set)) {
|
|
_(newObj, key, desc);
|
|
} else {
|
|
newObj[key] = obj[key];
|
|
}
|
|
}
|
|
}
|
|
return newObj;
|
|
})(obj, nodeInterop);
|
|
}
|
|
|
|
//# sourceMappingURL=interopRequireWildcard.js.map
|