-
Notifications
You must be signed in to change notification settings - Fork 79
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.52 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.52 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
{
"name": "@salesforce/mcp-test-client",
"description": "Type-safe MCP client for testing tools with Zod schema validation",
"version": "0.0.1",
"author": "Salesforce",
"license": "Apache-2.0",
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/salesforcecli/mcp.git",
"directory": "packages/mcp-test-client"
},
"main": "dist/index",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"engines": {
"node": ">=20.0.0"
},
"keywords": [
"mcp",
"model-context-protocol",
"testing",
"zod",
"typescript"
],
"dependencies": {
"@modelcontextprotocol/sdk": "^1.17.3",
"zod": "^3.23.8"
},
"devDependencies": {
"prettier": "^3.6.2",
"@eslint/js": "^9.32.0",
"@types/node": "^22.16.5",
"eslint": "^9.32.0",
"rimraf": "^6.0.1",
"typescript": "^5.9.2",
"typescript-eslint": "^8.37.0",
"vite": "^7.1.11",
"vitest": "^3.2.4"
},
"files": [
"dist",
"LICENSE.txt",
"README.md"
],
"prettier": {
"singleQuote": true
},
"scripts": {
"build": "tsc -p tsconfig.build.json",
"format": "prettier --write \"src/**/*.ts\"",
"clean": "rimraf dist",
"clean-all": "yarn clean && rimraf node_modules",
"lint": "eslint src/**/*.ts",
"postclean": "rimraf dist && rimraf ./*.tgz",
"package": "yarn pack",
"test": "echo 'No unit tests are needed for this api module'",
"typecheck": "tsc --noEmit"
}
}