@gleanwork/mcp-server-tester 1.0.0-beta.2 → 1.0.0-beta.3
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 +13 -12
- package/dist/cli/index.js +5 -2
- package/dist/fixtures/mcp.d.ts +8 -0
- package/dist/fixtures/mcp.js +5 -2
- package/dist/fixtures/mcp.js.map +1 -1
- package/dist/index.cjs +6 -5
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +9 -7
- package/dist/index.d.ts +9 -7
- package/dist/index.js +6 -5
- package/dist/index.js.map +1 -1
- package/dist/reporters/ui-dist/app.js +4 -4
- package/package.json +3 -3
- package/src/reporters/ui-dist/app.js +4 -4
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@gleanwork/mcp-server-tester",
|
|
3
|
-
"version": "1.0.0-beta.
|
|
3
|
+
"version": "1.0.0-beta.3",
|
|
4
4
|
"description": "Playwright-based testing and evaluation framework for MCP servers",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"playwright",
|
|
@@ -65,7 +65,7 @@
|
|
|
65
65
|
"prepublishOnly": "npm run build",
|
|
66
66
|
"preview-reporter": "tsx scripts/preview-reporter.ts",
|
|
67
67
|
"test": "vitest run",
|
|
68
|
-
"test:all": "
|
|
68
|
+
"test:all": "npm run build && npm run format:check && npm run lint && npm run typecheck && npm test",
|
|
69
69
|
"test:playwright": "playwright test",
|
|
70
70
|
"test:watch": "vitest",
|
|
71
71
|
"typecheck": "tsc --noEmit"
|
|
@@ -158,7 +158,7 @@
|
|
|
158
158
|
}
|
|
159
159
|
},
|
|
160
160
|
"engines": {
|
|
161
|
-
"node": ">=
|
|
161
|
+
"node": ">=22.0.0"
|
|
162
162
|
},
|
|
163
163
|
"publishConfig": {
|
|
164
164
|
"access": "public",
|