-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 855 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 855 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
{
"name": "template-slack-agent",
"version": "1.0.0",
"description": "A Mastra template for building Slack bots with streaming responses, thread-based conversation memory, and support for multiple agents with their own Slack apps",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "mastra dev",
"build": "mastra build",
"start": "mastra start"
},
"keywords": [],
"author": "",
"license": "Apache-2.0",
"type": "module",
"engines": {
"node": ">=22.13.0"
},
"dependencies": {
"@mastra/core": "beta",
"@mastra/libsql": "beta",
"@mastra/memory": "beta",
"@slack/web-api": "^7.13.0",
"supports-color": "^10.2.2",
"zod": "^3.25.76"
},
"devDependencies": {
"@types/node": "^24.1.0",
"mastra": "beta",
"typescript": "^5.9.3"
}
}