-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 1.83 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 1.83 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
69
70
71
72
73
74
75
{
"name": "@certinia/apex-log-mcp",
"version": "1.0.0",
"description": "MCP server that gives AI assistants tools to analyze Salesforce Apex debug logs for performance bottlenecks, slow methods, and governor limit usage.",
"type": "module",
"main": "dist/index.js",
"bin": {
"apex-log-mcp": "dist/index.js"
},
"files": [
"dist/**/*.js",
"README.md",
"LICENSE.txt"
],
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"start": "node dist/index.js",
"prepublishOnly": "pnpm run build",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"lint": "eslint ./src ./tests"
},
"keywords": [
"mcp",
"model-context-protocol",
"salesforce",
"apex",
"log-analysis",
"debugging",
"performance",
"ai",
"developer-tools",
"debug-logs"
],
"publishConfig": {
"access": "public"
},
"author": {
"name": "Certinia",
"url": "https://github.com/certinia"
},
"license": "BSD-3-Clause",
"repository": {
"type": "git",
"url": "git+https://github.com/certinia/debug-log-analyzer-mcp.git"
},
"bugs": {
"url": "https://github.com/certinia/debug-log-analyzer-mcp/issues"
},
"homepage": "https://github.com/certinia/debug-log-analyzer-mcp#readme",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.27.1",
"@salesforce/core": "^8.26.3",
"@toon-format/toon": "^2.1.0",
"zod": "^4.3.6"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@swc/core": "^1.15.18",
"@swc/jest": "^0.2.39",
"@types/jest": "^30.0.0",
"@types/node": "^22.19.13",
"eslint": "^10.0.2",
"eslint-plugin-headers": "^1.3.4",
"jest": "^30.2.0",
"typescript": "^5.9.3",
"typescript-eslint": "^8.56.1"
},
"engines": {
"node": ">=20.19.0"
},
"packageManager": "pnpm@10.30.2"
}