-
Notifications
You must be signed in to change notification settings - Fork 79
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.85 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.85 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
{
"name": "@salesforce/mcp-provider-code-analyzer",
"description": "(For Interal Use Only) Provides MCP Tools for Salesforce Code Analyzer to a MCP Server",
"version": "0.5.2",
"author": "Salesforce",
"license": "Apache-2.0",
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/salesforcecli/mcp.git",
"directory": "packages/mcp-provider-code-analyzer"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.18.0",
"@salesforce/code-analyzer-core": "^0.40.0",
"@salesforce/code-analyzer-engine-api": "^0.32.0",
"@salesforce/code-analyzer-eslint-engine": "^0.37.0",
"@salesforce/code-analyzer-pmd-engine": "^0.33.0",
"@salesforce/code-analyzer-regex-engine": "^0.30.0",
"@salesforce/code-analyzer-retirejs-engine": "^0.29.0",
"@salesforce/mcp-provider-api": "^0.4.1",
"zod": "^3.25.76"
},
"devDependencies": {
"@eslint/js": "^9.39.1",
"@salesforce/mcp-test-client": "0.0.1",
"@types/node": "^22.16.5",
"@vitest/coverage-istanbul": "^4.0.14",
"eslint": "^9.39.1",
"rimraf": "^6.1.2",
"typescript": "^5.9.2",
"typescript-eslint": "^8.48.0",
"vite": "^7.2.4",
"vitest": "^4.0.14"
},
"files": [
"dist",
"LICENSE.txt",
"package.json"
],
"scripts": {
"build": "tsc --build tsconfig.build.json --verbose && cp -R src/data dist/data && cp -R src/templates dist/templates",
"clean": "tsc --build tsconfig.build.json --clean",
"clean-all": "yarn clean && rimraf node_modules",
"lint": "eslint **/*.ts",
"postclean": "rimraf dist && rimraf ./*.tgz",
"package": "yarn pack",
"test": "tsc --build tsconfig.json --noEmit && vitest run --coverage --exclude \"test/e2e/**/*.test.ts\"",
"test:e2e": "tsc --build tsconfig.json --noEmit && vitest run \"test/e2e\""
}
}