-
Notifications
You must be signed in to change notification settings - Fork 79
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.18 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.18 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
{
"name": "@salesforce/mcp-provider-api",
"description": "(For Internal Use Only) API to implement a McpProvider that provides prompts, resources, and tools to be registered by an MCP server",
"version": "0.4.0",
"type": "module",
"license": "Apache-2.0",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.18.0",
"@salesforce/core": "^8",
"@salesforce/ts-types": "^2",
"@types/semver": "^7.7.1",
"semver": "^7.7.2",
"zod": "^3.25.76"
},
"devDependencies": {
"@eslint/js": "^9.35.0",
"@types/node": "^22.19.1",
"eslint": "^9.35.0",
"rimraf": "^6.0.1",
"typescript": "^5.9.2",
"typescript-eslint": "^8.44.0"
},
"files": [
"dist",
"LICENSE.txt",
"package.json"
],
"scripts": {
"build": "tsc --build tsconfig.json --verbose",
"clean": "tsc --build tsconfig.json --clean",
"clean-all": "yarn clean && rimraf node_modules",
"format": "prettier --write .",
"lint": "echo 'no lint script available yet'",
"postclean": "rimraf dist && rimraf ./*.tgz",
"package": "yarn pack",
"test": "echo 'No unit tests are needed for this api module'"
}
}