@fre4x/benchmark 1.1.0-beta.0

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.
Files changed (3) hide show
  1. package/README.md +73 -0
  2. package/dist/index.js +31342 -0
  3. package/package.json +44 -0
package/package.json ADDED
@@ -0,0 +1,44 @@
1
+ {
2
+ "name": "@fre4x/benchmark",
3
+ "version": "1.1.0-beta.0",
4
+ "description": "A benchmark MCP server for agent evaluation workflows.",
5
+ "type": "module",
6
+ "main": "dist/index.js",
7
+ "bin": {
8
+ "benchmark": "dist/index.js"
9
+ },
10
+ "files": [
11
+ "dist"
12
+ ],
13
+ "scripts": {
14
+ "build": "node ../scripts/build-package.mjs",
15
+ "typecheck": "cross-env NODE_OPTIONS=--max-old-space-size=4096 tsc --noEmit",
16
+ "start": "node dist/index.js",
17
+ "dev": "tsx src/index.ts",
18
+ "watch": "tsc -w",
19
+ "inspector": "npm run build && node ../scripts/run-official-inspector.mjs node dist/index.js",
20
+ "test": "node ../scripts/run-vitest.mjs run --exclude dist",
21
+ "test:watch": "node ../scripts/run-vitest.mjs",
22
+ "prepublishOnly": "npm run typecheck && npm run build"
23
+ },
24
+ "keywords": [
25
+ "mcp",
26
+ "benchmark",
27
+ "gaia",
28
+ "evaluation",
29
+ "ai"
30
+ ],
31
+ "author": "fritzprix",
32
+ "license": "MIT",
33
+ "dependencies": {
34
+ "@modelcontextprotocol/sdk": "^1.27.1",
35
+ "zod": "^4.3.6"
36
+ },
37
+ "devDependencies": {
38
+ "@types/node": "^25.3.5",
39
+ "cross-env": "^10.1.0",
40
+ "tsx": "^4.21.0",
41
+ "typescript": "^5.9.3",
42
+ "vitest": "^4.0.18"
43
+ }
44
+ }