diff --git a/package.json b/package.json index 321915195..a13b54a9b 100644 --- a/package.json +++ b/package.json @@ -24,9 +24,11 @@ "@chakra-ui/react": "^2.8.2", "@chakra-ui/shared-utils": "^2.0.4", "@chakra-ui/styled-system": "^2.9.2", + "@chakra-ui/theme-tools": "^2.1.2", "@codemirror/autocomplete": "^6.12.0", "@codemirror/lang-json": "^6.0.1", "@codemirror/language": "^6.10.1", + "@codemirror/view": "^6.26.2", "@emotion/react": "^11.11.1", "@emotion/styled": "^11.11.0", "@getalby/bitcoin-connect": "^3.2.1", @@ -34,6 +36,7 @@ "@noble/curves": "^1.3.0", "@noble/hashes": "^1.3.2", "@noble/secp256k1": "^1.7.0", + "@scure/base": "^1.1.6", "@uiw/codemirror-theme-github": "^4.21.21", "@uiw/react-codemirror": "^4.21.21", "@webscopeio/react-textarea-autocomplete": "^4.9.2", diff --git a/src/services/channel-metadata.ts b/src/services/channel-metadata.ts index 4fd1f7d52..3b719aae7 100644 --- a/src/services/channel-metadata.ts +++ b/src/services/channel-metadata.ts @@ -1,6 +1,6 @@ import dayjs from "dayjs"; import debug, { Debugger } from "debug"; -import _throttle from "lodash/throttle"; +import _throttle from "lodash.throttle"; import { kinds } from "nostr-tools"; import NostrSubscription from "../classes/nostr-subscription"; diff --git a/src/services/relay-stats.ts b/src/services/relay-stats.ts index ee39b1cd1..284468c03 100644 --- a/src/services/relay-stats.ts +++ b/src/services/relay-stats.ts @@ -1,4 +1,4 @@ -import _throttle from "lodash/throttle"; +import _throttle from "lodash.throttle"; import NostrRequest from "../classes/nostr-request"; import Subject from "../classes/subject";