-
Notifications
You must be signed in to change notification settings - Fork 79
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.33 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.33 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
{
"name": "@salesforce/mcp-provider-devops",
"description": "MCP provider for DevOps tools and operations",
"version": "0.2.0",
"author": "Salesforce",
"license": "Apache-2.0",
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/salesforcecli/mcp.git",
"directory": "packages/mcp-provider-devops"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.18.0",
"@salesforce/mcp-provider-api": "^0.4.1",
"@salesforce/core": "^8.24.3",
"@salesforce/source-deploy-retrieve": "^12.31.7",
"@salesforce/ts-types": "^2.0.12",
"zod": "^3.25.76"
},
"devDependencies": {
"@eslint/js": "^9.35.0",
"@types/node": "^22.16.5",
"@vitest/coverage-istanbul": "^3.2.4",
"eslint": "^9.35.0",
"rimraf": "^6.0.1",
"typescript": "^5.9.2",
"typescript-eslint": "^8.44.0",
"vite": "^7.1.5",
"vitest": "^3.2.4"
},
"files": [
"dist",
"LICENSE.txt",
"package.json"
],
"scripts": {
"build": "tsc --build tsconfig.build.json --verbose",
"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": "vitest run"
}
}