generated from slack-samples/bolt-js-assistant-template
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.03 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.03 KB
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
33
34
35
36
37
38
{
"name": "bolt-js-slack-mcp-server",
"version": "1.0.0",
"description": "Sample that demonstrates the use of Slack's MCP server",
"type": "module",
"main": "app.js",
"scripts": {
"check": "npx tsc --checkJs --noEmit --esModuleInterop --target esnext --module nodenext --moduleResolution nodenext app.js",
"start": "node app.js",
"lint": "npx @biomejs/biome check *.js llm/ listeners/",
"lint:fix": "npx @biomejs/biome check --write *.js llm/ listeners/"
},
"author": "Slack Technologies, LLC",
"license": "MIT",
"keywords": [
"slack",
"bolt",
"slackapi",
"mcp"
],
"repository": {
"type": "git",
"url": "https://github.com/slack-samples/bolt-js-slack-mcp-server.git"
},
"bugs": {
"url": "https://github.com/slack-samples/bolt-js-slack-mcp-server/issues"
},
"dependencies": {
"@slack/bolt": "^4.5.0",
"dotenv": "~17.3.1",
"openai": "^6.25.0"
},
"devDependencies": {
"@biomejs/biome": "2.4.5",
"@types/node": "^25.3.3",
"typescript": "^5.9.3"
}
}