-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.34 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.34 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
{
"name": "@tigerdata/tiger-salesforce-mcp-server",
"version": "0.1.0",
"description": "MCP server to expose an API around our embedded salesforce database",
"license": "UNLICENSED",
"author": "TigerData",
"homepage": "https://tigerdata.com",
"type": "module",
"bin": {
"tiger-salesforce-mcp-server": "dist/index.js"
},
"files": [
"dist"
],
"scripts": {
"build": "tsc && shx chmod +x dist/*.js",
"prepare": "npm run build",
"watch": "tsx watch src/index.ts http",
"watch:http": "tsx watch src/index.ts http",
"start": "node dist/index.js stdio",
"start:http": "node dist/index.js http",
"lint": "eslint",
"lint:fix": "eslint --fix",
"prettier:check": "prettier --check .",
"prettier:write": "prettier --write .",
"inspector": "npx @modelcontextprotocol/inspector"
},
"dependencies": {
"@ai-sdk/openai": "^2.0.68",
"@tigerdata/mcp-boilerplate": "^0.8.0",
"ai": "^5.0.94",
"dotenv": "^17.2.3",
"jsforce": "^3.10.14",
"pg": "^8.16.3",
"zod": "^3.25.76"
},
"devDependencies": {
"@eslint/js": "^9.39.1",
"@types/express": "^5.0.6",
"@types/node": "^22.19.1",
"@types/pg": "^8.15.4",
"eslint": "^9.39.1",
"prettier": "^3.6.2",
"shx": "^0.4.0",
"tsx": "^4.20.6",
"typescript": "^5.9.3",
"typescript-eslint": "^8.47.0"
}
}