-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.03 KB
/
Copy pathpackage.json
File metadata and controls
79 lines (79 loc) · 2.03 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
76
77
78
79
{
"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/server.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",
"eval": "node scripts/eval.mjs",
"eval:update": "node scripts/eval.mjs --update",
"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/client": "^2.0.0",
"@modelcontextprotocol/server": "^2.0.0",
"@salesforce/core": "^8.32.3",
"@toon-format/toon": "^4.1.1",
"zod": "^4.4.3"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@swc/core": "^1.15.43",
"@swc/jest": "^0.2.39",
"@types/jest": "^30.0.0",
"@types/node": "^22.19.13",
"eslint": "^10.7.0",
"eslint-plugin-headers": "^1.3.4",
"jest": "^30.4.2",
"typescript": "npm:@typescript/typescript6@^6.0.2",
"typescript-eslint": "^8.64.0",
"typescript7": "npm:typescript@^7.0.2"
},
"engines": {
"node": ">=22"
},
"packageManager": "pnpm@10.30.2"
}