-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 917 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 917 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": "@appimate/mcp-server",
"version": "1.0.0",
"description": "Production-grade MCP server for Appimate Business dashboard AI assistant",
"type": "module",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"dev": "tsx watch src/index.ts",
"dev:http": "tsx watch src/http-server.ts",
"start": "node dist/index.js",
"start:http": "node dist/http-server.js"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.0.0",
"dotenv": "^16.6.1",
"drizzle-orm": "^0.45.0",
"express": "^4.18.2",
"jsonwebtoken": "^9.0.2",
"tsconfig-paths": "^4.2.0",
"zod": "^3.25.76"
},
"peerDependencies": {
"zod": "^3.25.76"
},
"devDependencies": {
"@swc/core": "^1.15.8",
"@swc/helpers": "^0.5.18",
"@types/express": "^4.17.21",
"@types/jsonwebtoken": "^9.0.7",
"@types/node": "^20",
"tsx": "^4.21.0",
"typescript": "^5"
}
}