@elizaos/plugin-slack 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/LICENSE +1 -0
- package/README.md +209 -0
- package/auto-enable.ts +21 -0
- package/dist/index.js +2503 -2985
- package/dist/index.js.map +10 -21
- package/package.json +25 -24
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@elizaos/plugin-slack",
|
|
3
|
-
"version": "2.0.0-
|
|
4
|
-
"description": "Slack integration plugin for
|
|
3
|
+
"version": "2.0.0-beta.1",
|
|
4
|
+
"description": "Slack integration plugin for elizaOS agents with Socket Mode support",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
7
7
|
"module": "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",
|
|
@@ -35,27 +44,28 @@
|
|
|
35
44
|
"build": "bun run build.ts",
|
|
36
45
|
"build:ts": "bun run build.ts",
|
|
37
46
|
"dev": "bun --hot build.ts",
|
|
38
|
-
"clean": "rm -rf dist .turbo
|
|
47
|
+
"clean": "rm -rf dist .turbo",
|
|
39
48
|
"test": "vitest run --passWithNoTests",
|
|
40
|
-
"typecheck": "
|
|
41
|
-
"lint": "
|
|
42
|
-
"lint:check": "
|
|
43
|
-
"format": "
|
|
44
|
-
"format:check": "
|
|
49
|
+
"typecheck": "tsc --noEmit",
|
|
50
|
+
"lint": "../../node_modules/.bin/biome check --write --unsafe .",
|
|
51
|
+
"lint:check": "../../node_modules/.bin/biome check .",
|
|
52
|
+
"format": "../../node_modules/.bin/biome format --write .",
|
|
53
|
+
"format:check": "../../node_modules/.bin/biome format ."
|
|
45
54
|
},
|
|
46
55
|
"dependencies": {
|
|
56
|
+
"@elizaos/core": "2.0.0-beta.1",
|
|
47
57
|
"@slack/bolt": "^4.1.0",
|
|
48
|
-
"@slack/web-api": "^7.
|
|
49
|
-
"
|
|
50
|
-
"zod": "^4.3.6"
|
|
58
|
+
"@slack/web-api": "^7.15.2",
|
|
59
|
+
"zod": "^4.4.3"
|
|
51
60
|
},
|
|
52
61
|
"devDependencies": {
|
|
62
|
+
"@biomejs/biome": "^2.4.14",
|
|
53
63
|
"@types/node": "^25.0.3",
|
|
54
|
-
"typescript": "^
|
|
55
|
-
"
|
|
64
|
+
"typescript": "^6.0.3",
|
|
65
|
+
"vitest": "^4.1.4"
|
|
56
66
|
},
|
|
57
67
|
"peerDependencies": {
|
|
58
|
-
"@elizaos/core": "2.0.0-
|
|
68
|
+
"@elizaos/core": "2.0.0-beta.1"
|
|
59
69
|
},
|
|
60
70
|
"publishConfig": {
|
|
61
71
|
"access": "public"
|
|
@@ -106,14 +116,5 @@
|
|
|
106
116
|
"sensitive": false
|
|
107
117
|
}
|
|
108
118
|
}
|
|
109
|
-
},
|
|
110
|
-
"milady": {
|
|
111
|
-
"platforms": [
|
|
112
|
-
"node"
|
|
113
|
-
],
|
|
114
|
-
"runtime": "node",
|
|
115
|
-
"platformDetails": {
|
|
116
|
-
"node": "Default export (Node.js)"
|
|
117
|
-
}
|
|
118
119
|
}
|
|
119
120
|
}
|