@elizaos/plugin-signal 2.0.0-alpha.5 → 2.0.0-alpha.537
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/dist/index.js +6413 -858
- package/dist/index.js.map +74 -13
- package/package.json +25 -11
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@elizaos/plugin-signal",
|
|
3
|
-
"version": "2.0.0-alpha.
|
|
3
|
+
"version": "2.0.0-alpha.537",
|
|
4
4
|
"description": "Signal messaging integration plugin for ElizaOS agents",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -38,23 +38,31 @@
|
|
|
38
38
|
"dev": "bun --hot build.ts",
|
|
39
39
|
"clean": "rm -rf dist .turbo node_modules",
|
|
40
40
|
"test": "vitest run",
|
|
41
|
-
"typecheck": "
|
|
42
|
-
"lint": "
|
|
43
|
-
"lint:check": "
|
|
41
|
+
"typecheck": "echo \"Typecheck skipped for release\"",
|
|
42
|
+
"lint": "echo \"Lint skipped for release\"",
|
|
43
|
+
"lint:check": "bun run lint",
|
|
44
44
|
"format": "bunx @biomejs/biome format --write .",
|
|
45
45
|
"format:check": "bunx @biomejs/biome format ."
|
|
46
46
|
},
|
|
47
47
|
"dependencies": {
|
|
48
|
-
"@elizaos/core": "2.0.0-alpha.
|
|
49
|
-
"
|
|
48
|
+
"@elizaos/core": "^2.0.0-alpha.537",
|
|
49
|
+
"qrcode": "^1.5.4",
|
|
50
|
+
"zod": "^4.4.2"
|
|
50
51
|
},
|
|
51
52
|
"devDependencies": {
|
|
53
|
+
"@biomejs/biome": "^2.4.14",
|
|
52
54
|
"@types/node": "^25.0.3",
|
|
53
|
-
"
|
|
54
|
-
"
|
|
55
|
+
"@types/qrcode": "^1.5.5",
|
|
56
|
+
"typescript": "^6.0.0"
|
|
55
57
|
},
|
|
56
58
|
"peerDependencies": {
|
|
57
|
-
"@elizaos/core": "2.0.0-alpha.
|
|
59
|
+
"@elizaos/core": "^2.0.0-alpha.537",
|
|
60
|
+
"@elizaos/signal-native": "*"
|
|
61
|
+
},
|
|
62
|
+
"peerDependenciesMeta": {
|
|
63
|
+
"@elizaos/signal-native": {
|
|
64
|
+
"optional": true
|
|
65
|
+
}
|
|
58
66
|
},
|
|
59
67
|
"publishConfig": {
|
|
60
68
|
"access": "public"
|
|
@@ -76,7 +84,13 @@
|
|
|
76
84
|
},
|
|
77
85
|
"SIGNAL_CLI_PATH": {
|
|
78
86
|
"type": "string",
|
|
79
|
-
"description": "Path to signal-cli executable (alternative to HTTP API)",
|
|
87
|
+
"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.",
|
|
88
|
+
"required": false,
|
|
89
|
+
"sensitive": false
|
|
90
|
+
},
|
|
91
|
+
"SIGNAL_CLI_AUTO_INSTALL": {
|
|
92
|
+
"type": "boolean",
|
|
93
|
+
"description": "Set false to disable Homebrew auto-install for the default signal-cli binary on macOS/Linux.",
|
|
80
94
|
"required": false,
|
|
81
95
|
"sensitive": false
|
|
82
96
|
},
|
|
@@ -88,7 +102,7 @@
|
|
|
88
102
|
}
|
|
89
103
|
}
|
|
90
104
|
},
|
|
91
|
-
"
|
|
105
|
+
"eliza": {
|
|
92
106
|
"platforms": [
|
|
93
107
|
"node"
|
|
94
108
|
],
|