-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.67 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.67 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
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "@opensourceops/chorus-mcp",
"version": "0.1.1",
"description": "MCP server for Chorus.ai conversation intelligence API",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"chorus-mcp-server": "dist/index.js"
},
"files": [
"dist"
],
"engines": {
"node": ">=18",
"npm": ">=9.0.0"
},
"scripts": {
"start": "node dist/index.js",
"dev": "tsx watch src/index.ts",
"build": "tsc",
"clean": "rm -rf dist",
"test": "jest",
"test:watch": "jest --watch",
"test:unit": "jest --testPathPattern=tests/unit",
"test:integration": "jest --testPathPattern=tests/integration",
"test:e2e": "jest --testPathPattern=tests/e2e --testTimeout=60000",
"prepare": "npm run build"
},
"keywords": [
"mcp",
"chorus",
"zoominfo",
"conversation-intelligence",
"sales",
"sales-coaching",
"deal-intelligence"
],
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/opensourceops/chorus-mcp-server.git"
},
"homepage": "https://github.com/opensourceops/chorus-mcp-server#readme",
"bugs": {
"url": "https://github.com/opensourceops/chorus-mcp-server/issues"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.26.0",
"@opensourceops/chorus-mcp": "^0.1.0",
"axios": "^1.7.9",
"express": "^4.21.0",
"zod": "^3.23.8"
},
"devDependencies": {
"@types/express": "^5.0.0",
"@types/jest": "^30.0.0",
"@types/node": "^22.10.0",
"jest": "^29.7.0",
"ts-jest": "^29.1.1",
"tsx": "^4.19.2",
"typescript": "^5.7.2"
},
"overrides": {
"minimatch": ">=10.2.1",
"glob": ">=11.0.0"
}
}