-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.41 KB
/
Copy pathpackage.json
File metadata and controls
56 lines (56 loc) · 1.41 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
{
"name": "contextkeeper-mcp-slack-bot",
"version": "1.0.0",
"description": "AI-powered repository context and team onboarding through MCP server and Slack bot integration",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"dev": "tsx watch src/index.ts",
"start": "node dist/index.js",
"test": "vitest --run",
"test:watch": "vitest",
"test:pbt": "vitest --run --reporter=verbose",
"lint": "eslint src/**/*.ts",
"lint:fix": "eslint src/**/*.ts --fix",
"clean": "rm -rf dist"
},
"keywords": [
"mcp",
"slack",
"ai",
"repository",
"context",
"onboarding"
],
"author": "ContextKeeper Team",
"license": "MIT",
"dependencies": {
"@modelcontextprotocol/sdk": "^0.5.0",
"@slack/bolt": "^3.17.1",
"@slack/web-api": "^7.0.2",
"axios": "^1.6.2",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"zod": "^3.22.4"
},
"devDependencies": {
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/jsdom": "^27.0.0",
"@types/node": "^20.10.4",
"@types/supertest": "^6.0.3",
"@typescript-eslint/eslint-plugin": "^6.13.2",
"@typescript-eslint/parser": "^6.13.2",
"eslint": "^8.55.0",
"fast-check": "^3.23.2",
"jsdom": "^28.0.0",
"supertest": "^7.2.2",
"tsx": "^4.6.2",
"typescript": "^5.3.3",
"vitest": "^1.0.4"
},
"engines": {
"node": ">=18.0.0"
}
}