@elizaos/plugin-signal 2.0.0-alpha.7 → 2.0.0-beta.1

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-signal",
3
- "version": "2.0.0-alpha.7",
3
+ "version": "2.0.0-beta.1",
4
4
  "description": "Signal messaging integration plugin for ElizaOS agents",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -20,8 +20,17 @@
20
20
  }
21
21
  },
22
22
  "files": [
23
- "dist"
23
+ "dist",
24
+ "auto-enable.ts"
24
25
  ],
26
+ "elizaos": {
27
+ "plugin": {
28
+ "autoEnableModule": "./auto-enable.ts",
29
+ "capabilities": [
30
+ "messaging"
31
+ ]
32
+ }
33
+ },
25
34
  "keywords": [
26
35
  "elizaos",
27
36
  "plugin",
@@ -36,7 +45,7 @@
36
45
  "build": "bun run build.ts",
37
46
  "build:ts": "bun run build.ts",
38
47
  "dev": "bun --hot build.ts",
39
- "clean": "rm -rf dist .turbo node_modules",
48
+ "clean": "rm -rf dist .turbo",
40
49
  "test": "vitest run",
41
50
  "typecheck": "echo \"Typecheck skipped for release\"",
42
51
  "lint": "echo \"Lint skipped for release\"",
@@ -45,16 +54,24 @@
45
54
  "format:check": "bunx @biomejs/biome format ."
46
55
  },
47
56
  "dependencies": {
48
- "@elizaos/core": "2.0.0-alpha.3",
49
- "zod": "^4.3.6"
57
+ "@elizaos/core": "2.0.0-beta.1",
58
+ "qrcode": "^1.5.4",
59
+ "zod": "^4.4.3"
50
60
  },
51
61
  "devDependencies": {
62
+ "@biomejs/biome": "^2.4.14",
52
63
  "@types/node": "^25.0.3",
53
- "typescript": "^5.9.3",
54
- "@biomejs/biome": "^2.3.11"
64
+ "@types/qrcode": "^1.5.5",
65
+ "typescript": "^6.0.3"
55
66
  },
56
67
  "peerDependencies": {
57
- "@elizaos/core": "2.0.0-alpha.3"
68
+ "@elizaos/core": "2.0.0-beta.1",
69
+ "@elizaos/signal-native": "*"
70
+ },
71
+ "peerDependenciesMeta": {
72
+ "@elizaos/signal-native": {
73
+ "optional": true
74
+ }
58
75
  },
59
76
  "publishConfig": {
60
77
  "access": "public"
@@ -76,7 +93,13 @@
76
93
  },
77
94
  "SIGNAL_CLI_PATH": {
78
95
  "type": "string",
79
- "description": "Path to signal-cli executable (alternative to HTTP API)",
96
+ "description": "Path to signal-cli executable (alternative to HTTP API). Leave blank to resolve signal-cli from PATH and auto-install with Homebrew on macOS/Linux when available; on Windows or without Homebrew, install signal-cli manually and set this path.",
97
+ "required": false,
98
+ "sensitive": false
99
+ },
100
+ "SIGNAL_CLI_AUTO_INSTALL": {
101
+ "type": "boolean",
102
+ "description": "Set false to disable Homebrew auto-install for the default signal-cli binary on macOS/Linux.",
80
103
  "required": false,
81
104
  "sensitive": false
82
105
  },
@@ -88,7 +111,7 @@
88
111
  }
89
112
  }
90
113
  },
91
- "milady": {
114
+ "eliza": {
92
115
  "platforms": [
93
116
  "node"
94
117
  ],