-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 790 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 790 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
33
34
{
"name": "smartintern-mcp",
"version": "1.0.0",
"description": "MCP server for Slack integration, meeting notes, and follow-ups",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "ts-node src/index.ts",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"mcp",
"slack",
"meeting-notes",
"ai-assistant"
],
"author": "",
"license": "MIT",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.9.0",
"@slack/bolt": "^3.13.1",
"@slack/web-api": "^6.8.1",
"dotenv": "^16.0.3",
"pg": "^8.14.1",
"zod": "^3.22.4"
},
"devDependencies": {
"@types/node": "^18.16.3",
"@types/pg": "^8.6.6",
"ts-node": "^10.9.1",
"typescript": "^5.0.4"
}
}