@crashbytes/mcp-test-kit 0.1.4 → 0.1.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +3 -0
- package/package.json +10 -18
package/README.md
CHANGED
|
@@ -1,5 +1,8 @@
|
|
|
1
1
|
# MCP Test Kit
|
|
2
2
|
|
|
3
|
+
[](https://github.com/CrashBytes/map-test-kit/actions)
|
|
4
|
+
[](https://codecov.io/gh/CrashBytes/map-test-kit)
|
|
5
|
+
|
|
3
6
|
> **A comprehensive testing framework for Model Context Protocol (MCP) servers**
|
|
4
7
|
|
|
5
8
|
[](https://www.npmjs.com/package/@crashbytes/mcp-test-kit)
|
package/package.json
CHANGED
|
@@ -1,24 +1,24 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@crashbytes/mcp-test-kit",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.5",
|
|
4
4
|
"description": "Testing framework for Model Context Protocol (MCP) servers - Jest/Vitest for MCP",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
7
7
|
"exports": {
|
|
8
8
|
".": {
|
|
9
|
+
"types": "./dist/index.d.ts",
|
|
9
10
|
"import": "./dist/index.js",
|
|
10
|
-
"require": "./dist/index.js"
|
|
11
|
-
"types": "./dist/index.d.ts"
|
|
11
|
+
"require": "./dist/index.js"
|
|
12
12
|
},
|
|
13
13
|
"./matchers": {
|
|
14
|
+
"types": "./dist/matchers/index.d.ts",
|
|
14
15
|
"import": "./dist/matchers/index.js",
|
|
15
|
-
"require": "./dist/matchers/index.js"
|
|
16
|
-
"types": "./dist/matchers/index.d.ts"
|
|
16
|
+
"require": "./dist/matchers/index.js"
|
|
17
17
|
},
|
|
18
18
|
"./mocks": {
|
|
19
|
+
"types": "./dist/mocks/index.d.ts",
|
|
19
20
|
"import": "./dist/mocks/index.js",
|
|
20
|
-
"require": "./dist/mocks/index.js"
|
|
21
|
-
"types": "./dist/mocks/index.d.ts"
|
|
21
|
+
"require": "./dist/mocks/index.js"
|
|
22
22
|
}
|
|
23
23
|
},
|
|
24
24
|
"files": [
|
|
@@ -69,7 +69,7 @@
|
|
|
69
69
|
"node": ">=18.0.0"
|
|
70
70
|
},
|
|
71
71
|
"dependencies": {
|
|
72
|
-
"@modelcontextprotocol/sdk": "^1.
|
|
72
|
+
"@modelcontextprotocol/sdk": "^1.25.2"
|
|
73
73
|
},
|
|
74
74
|
"devDependencies": {
|
|
75
75
|
"@types/node": "^22.0.0",
|
|
@@ -80,15 +80,7 @@
|
|
|
80
80
|
"eslint-config-prettier": "^9.0.0",
|
|
81
81
|
"eslint-plugin-prettier": "^5.0.0",
|
|
82
82
|
"prettier": "^3.0.0",
|
|
83
|
-
"typescript": "^5.
|
|
84
|
-
"vitest": "^2.
|
|
85
|
-
},
|
|
86
|
-
"peerDependencies": {
|
|
87
|
-
"vitest": ">=1.0.0"
|
|
88
|
-
},
|
|
89
|
-
"peerDependenciesMeta": {
|
|
90
|
-
"vitest": {
|
|
91
|
-
"optional": true
|
|
92
|
-
}
|
|
83
|
+
"typescript": "^5.9.3",
|
|
84
|
+
"vitest": "^2.1.9"
|
|
93
85
|
}
|
|
94
86
|
}
|