-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 821 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 821 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
35
{
"name": "atomic-crm-mcp",
"repository": {
"type": "git",
"url": "https://github.com/marmelab/atomic-crm-mcp.git"
},
"version": "1.0.0",
"type": "module",
"main": "dist/index.js",
"scripts": {
"dev": "tsx src/index.ts",
"build": "tsc",
"start": "node dist/index.js",
"typecheck": "tsc --noEmit"
},
"keywords": [],
"author": "",
"license": "ISC",
"description": "MCP Server with Supabase OAuth for CRM data access",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.25.1",
"dotenv": "^16.6.1",
"express": "^4.22.1",
"jose": "^5.10.0",
"pg": "^8.16.3",
"zod": "^3.23.8"
},
"devDependencies": {
"@types/express": "^4.17.25",
"@types/node": "^20.19.27",
"@types/pg": "^8.16.0",
"tsx": "^4.21.0",
"typescript": "^5.9.3"
}
}