-
Notifications
You must be signed in to change notification settings - Fork 79
Expand file tree
/
Copy pathpackage.json
More file actions
132 lines (132 loc) · 3.27 KB
/
package.json
File metadata and controls
132 lines (132 loc) · 3.27 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
{
"name": "@salesforce/mcp-provider-dx-core",
"version": "0.5.0",
"description": "MCP provider for core Salesforce DX functionality",
"types": "lib/index.d.ts",
"license": "Apache-2.0",
"type": "module",
"scripts": {
"build": "wireit",
"build:watch": "yarn build --watch",
"clean": "tsc --build --clean",
"format": "wireit",
"lint": "wireit",
"test": "wireit",
"test:e2e": "nyc mocha \"./test/e2e/**/*.test.ts\" --slow 4500 --timeout 600000 --parallel --jobs 20",
"test:only": "wireit"
},
"repository": "salesforcecli/mcp",
"bugs": {
"url": "https://github.com/salesforcecli/mcp/issues"
},
"homepage": "https://github.com/salesforcecli/mcp",
"exports": {
".": {
"import": "./lib/index.js",
"types": "./lib/index.d.ts"
}
},
"files": [
"lib",
"!lib/**/*.map",
"messages",
"LICENSE.txt",
"package.json"
],
"dependencies": {
"@modelcontextprotocol/sdk": "^1.24.0",
"@salesforce/agents": "^0.15.4",
"@salesforce/apex-node": "^8.2.1",
"@salesforce/core": "^8.23.1",
"@salesforce/kit": "^3.1.6",
"@salesforce/mcp-provider-api": "^0.4.0",
"@salesforce/source-deploy-retrieve": "^12.22.0",
"@salesforce/source-tracking": "^7.4.8",
"@salesforce/ts-types": "^2.0.11",
"open": "^10.1.2",
"zod": "^3.25.76"
},
"devDependencies": {
"@salesforce/mcp-test-client": "0.0.1",
"@salesforce/dev-config": "^4.3.2",
"@salesforce/cli-plugins-testkit": "^5.3.39",
"@types/node": "^22.16.5",
"wireit": "^0.14.12",
"eslint": "^8.57.1",
"mocha": "11.7.2",
"chai": "^4.3.10",
"@types/mocha": "^10.0.10",
"@types/chai": "^4.3.14",
"@types/sinon": "^10.0.20",
"sinon": "10.0.0",
"nyc": "^17.0.0",
"eslint-config-salesforce-license": "^1.0.1",
"eslint-config-salesforce-typescript": "4.0.1",
"@salesforce/prettier-config": "^0.0.3",
"ts-node": "^10.9.2",
"typescript": "^5.8.3"
},
"publishConfig": {
"access": "public"
},
"wireit": {
"build": {
"command": "tsc --build --pretty --incremental --verbose",
"files": [
"src/**/*.ts",
"**/tsconfig.json",
"messages/**"
],
"output": [
"lib/**",
"*.tsbuildinfo"
],
"clean": "if-file-deleted"
},
"format": {
"command": "prettier --write \"+(src|test)/**/*.+(ts|js|json)\"",
"files": [
"src/**/*.ts",
"test/**/*.ts",
".prettier*"
],
"output": []
},
"lint": {
"command": "eslint src test --color --cache --cache-location .eslintcache",
"files": [
"src/**/*.ts",
"test/**/*.ts",
"**/.eslint*",
"**/tsconfig.json"
],
"output": []
},
"test:compile": {
"command": "tsc -p \"./test\" --pretty",
"files": [
"test/**/*.ts",
"**/tsconfig.json"
],
"output": []
},
"test": {
"command": "nyc mocha \"test/**/*.test.ts\" --exclude \"test/e2e/**/*.test.ts\"",
"env": {
"FORCE_COLOR": "2"
},
"files": [
"test/**/*.ts",
"src/**/*.ts",
"**/tsconfig.json",
".mocha*",
".nycrc"
],
"dependencies": [
"test:compile",
"lint"
],
"output": []
}
}
}