@elizaos/plugin-nostr 2.0.3-beta.2 → 2.0.3-beta.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@elizaos/plugin-nostr",
3
- "version": "2.0.3-beta.2",
3
+ "version": "2.0.3-beta.4",
4
4
  "type": "module",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.js",
@@ -30,6 +30,7 @@
30
30
  }
31
31
  },
32
32
  "files": [
33
+ "registry-entry.json",
33
34
  "dist",
34
35
  "auto-enable.ts"
35
36
  ],
@@ -54,7 +55,7 @@
54
55
  "typecheck": "tsgo --noEmit"
55
56
  },
56
57
  "dependencies": {
57
- "@elizaos/core": "2.0.3-beta.2",
58
+ "@elizaos/core": "2.0.3-beta.4",
58
59
  "nostr-tools": "^2.0.0"
59
60
  },
60
61
  "devDependencies": {
@@ -109,5 +110,5 @@
109
110
  }
110
111
  }
111
112
  },
112
- "gitHead": "82fe0f44215954c2417328203f5bd6510985c1fc"
113
+ "gitHead": "f76f55793a0fb8d6b869dd8ddce03970de061e34"
113
114
  }
@@ -0,0 +1,71 @@
1
+ {
2
+ "id": "nostr",
3
+ "name": "Nostr",
4
+ "description": "Nostr connector for relay-based social posting and conversation handling.",
5
+ "npmName": "@elizaos/plugin-nostr",
6
+ "version": "2.0.0-beta.0",
7
+ "source": "bundled",
8
+ "tags": ["connector", "social", "nostr", "relays", "social-feed"],
9
+ "config": {
10
+ "NOSTR_RELAYS": {
11
+ "type": "string",
12
+ "required": false,
13
+ "sensitive": false,
14
+ "label": "Relays",
15
+ "help": "Comma-separated list of relay URLs",
16
+ "advanced": false
17
+ },
18
+ "NOSTR_ENABLED": {
19
+ "type": "boolean",
20
+ "required": false,
21
+ "sensitive": false,
22
+ "label": "Enabled",
23
+ "help": "Enable or disable this feature",
24
+ "advanced": false
25
+ },
26
+ "NOSTR_DM_POLICY": {
27
+ "type": "string",
28
+ "required": false,
29
+ "sensitive": false,
30
+ "label": "Dm Policy",
31
+ "help": "DM policy (e.g. allow, deny, allowlist)",
32
+ "advanced": false
33
+ },
34
+ "NOSTR_ALLOW_FROM": {
35
+ "type": "string",
36
+ "required": false,
37
+ "sensitive": false,
38
+ "label": "Allow From",
39
+ "help": "Comma-separated allowed user list",
40
+ "advanced": false
41
+ },
42
+ "NOSTR_PRIVATE_KEY": {
43
+ "type": "secret",
44
+ "required": true,
45
+ "sensitive": true,
46
+ "label": "Private Key",
47
+ "help": "Private key for Nostr",
48
+ "advanced": false
49
+ }
50
+ },
51
+ "render": {
52
+ "visible": false,
53
+ "pinTo": [],
54
+ "style": "setup-panel",
55
+ "icon": "Fingerprint",
56
+ "group": "connector",
57
+ "groupOrder": 1,
58
+ "actions": ["enable", "configure", "setup-guide"]
59
+ },
60
+ "resources": {
61
+ "setupGuideUrl": "https://docs.eliza.ai/plugin-setup-guide#nostr"
62
+ },
63
+ "dependsOn": [],
64
+ "kind": "connector",
65
+ "subtype": "messaging",
66
+ "auth": {
67
+ "kind": "token",
68
+ "credentialKeys": []
69
+ },
70
+ "channels": ["nostr"]
71
+ }