Bump versions

This commit is contained in:
Jon Staab
2025-01-27 12:47:28 -08:00
parent f2a2b6f177
commit 15d36c5c3a
9 changed files with 33 additions and 35 deletions
+2 -2
View File
@@ -1,6 +1,6 @@
{
"name": "@welshman/app",
"version": "0.0.39",
"version": "0.0.40",
"author": "hodlbod",
"license": "MIT",
"description": "A collection of svelte stores for use in building nostr client applications.",
@@ -30,7 +30,7 @@
"@welshman/dvm": "~0.0.13",
"@welshman/feeds": "~0.0.30",
"@welshman/lib": "~0.0.37",
"@welshman/net": "~0.0.45",
"@welshman/net": "~0.0.46",
"@welshman/signer": "~0.0.19",
"@welshman/store": "~0.0.15",
"@welshman/util": "~0.0.58",
+2 -2
View File
@@ -1,6 +1,6 @@
{
"name": "@welshman/dvm",
"version": "0.0.13",
"version": "0.0.14",
"author": "hodlbod",
"license": "MIT",
"description": "A collection of utilities for building nostr DVMs.",
@@ -28,7 +28,7 @@
"dependencies": {
"@noble/hashes": "^1.6.1",
"@welshman/lib": "~0.0.37",
"@welshman/net": "~0.0.45",
"@welshman/net": "~0.0.46",
"@welshman/util": "~0.0.58",
"nostr-tools": "^2.7.2"
}
+3 -3
View File
@@ -1,6 +1,6 @@
{
"name": "@welshman/editor",
"version": "0.0.7",
"version": "0.0.8",
"scripts": {
"pub": "npm run check && npm run build && npm publish",
"fix": "",
@@ -44,7 +44,7 @@
"@tiptap/suggestion": "^2.9.1",
"@welshman/lib": "~0.0.36",
"@welshman/util": "~0.0.53",
"nostr-editor": "github:cesardeazevedo/nostr-editor#a211491c",
"nostr-editor": "^0.0.4-pre.6",
"nostr-tools": "^2.8.1",
"svelte": "^4.0.0",
"svelte-tiptap": "^1.0.0"
@@ -67,7 +67,7 @@
"@tiptap/pm": "^2.9.1",
"@welshman/lib": "~0.0.36",
"@welshman/util": "~0.0.53",
"nostr-editor": "github:cesardeazevedo/nostr-editor#a211491c",
"nostr-editor": "^0.0.4-pre.6",
"nostr-tools": "^2.10.4",
"publint": "^0.2.0",
"svelte": "^4.0.0",
@@ -9,6 +9,6 @@
<NodeViewWrapper as="span">
<button class="tiptap-object {selected ? 'tiptap-active' : ''}">
{fromNostrURI(node.attrs.nevent).slice(0, 16)}...
{fromNostrURI(node.attrs.bech32).slice(0, 16)}...
</button>
</NodeViewWrapper>
@@ -8,6 +8,6 @@
<NodeViewWrapper as="span">
<button class="tiptap-object {selected ? 'tiptap-active' : ''}">
@{node.attrs.nprofile.slice(0, 16)}...
@{node.attrs.bech32.slice(0, 16)}...
</button>
</NodeViewWrapper>
@@ -147,7 +147,6 @@ export const WelshmanExtension = NostrExtension.extend<WelshmanOptions>({
group: "inline",
},
extend: {
renderText: (props: any) => toNostrURI(props.node.attrs.nevent),
addNodeView: () => SvelteNodeViewRenderer(EditEvent),
},
},
@@ -157,13 +156,11 @@ export const WelshmanExtension = NostrExtension.extend<WelshmanOptions>({
group: "inline",
},
extend: {
renderText: (props: any) => toNostrURI(props.node.attrs.naddr),
addNodeView: () => SvelteNodeViewRenderer(EditEvent),
},
},
nprofile: {
extend: {
renderText: (props: any) => toNostrURI(props.node.attrs.nprofile),
addNodeView: () => SvelteNodeViewRenderer(EditMention),
},
},
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "@welshman/net",
"version": "0.0.45",
"version": "0.0.46",
"author": "hodlbod",
"license": "MIT",
"description": "Utilities for connecting with nostr relays.",
+2 -2
View File
@@ -1,6 +1,6 @@
{
"name": "@welshman/signer",
"version": "0.0.19",
"version": "0.0.20",
"author": "hodlbod",
"license": "MIT",
"description": "A nostr signer implemenation supporting several login methods.",
@@ -32,7 +32,7 @@
"@noble/curves": "^1.7.0",
"@noble/hashes": "^1.6.1",
"@welshman/lib": "~0.0.37",
"@welshman/net": "~0.0.45",
"@welshman/net": "~0.0.46",
"@welshman/util": "~0.0.58",
"nostr-tools": "^2.7.2"
},