-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.4 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.4 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
{
"name": "globalping-mcp-server",
"version": "1.1.0",
"private": true,
"scripts": {
"deploy": "wrangler deploy",
"dev": "wrangler dev",
"format": "biome format --write",
"lint:fix": "biome lint --fix",
"start": "wrangler dev",
"cf-typegen": "wrangler types",
"test": "vitest run --config vitest.config.ts test/unit && vitest run --config vitest.workers.config.ts",
"test:unit": "vitest run --config vitest.config.ts test/unit",
"test:integration": "vitest run --config vitest.workers.config.ts",
"test:watch": "vitest watch --config vitest.config.ts",
"coverage": "vitest run --config vitest.config.ts --coverage test/unit && vitest run --config vitest.workers.config.ts --coverage",
"coverage:unit": "vitest run --config vitest.config.ts --coverage test/unit",
"coverage:integration": "vitest run --config vitest.workers.config.ts --coverage"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@cloudflare/vitest-pool-workers": "^0.10.9",
"@types/node": "^24.10.1",
"@vitest/coverage-v8": "^3.2.4",
"happy-dom": "^20.0.10",
"marked": "^17.0.0",
"patch-package": "^8.0.1",
"typescript": "^5.9.3",
"vitest": "^3.2.4",
"wrangler": "^4.73.0"
},
"dependencies": {
"@cloudflare/workers-oauth-provider": "^0.1.0",
"@modelcontextprotocol/sdk": "^1.20.2",
"agents": "^0.7.6",
"globalping": "^0.2.0",
"hono": "^4.10.6",
"mcpcat": "^0.1.9-beta.5",
"zod": "^3.25.76"
}
}