-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
96 lines (96 loc) · 2.63 KB
/
package.json
File metadata and controls
96 lines (96 loc) · 2.63 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "@kryptosai/mcp-observatory",
"version": "0.13.0",
"description": "Test your MCP servers for breaking changes. Checks capabilities, invokes tools, detects schema drift between versions.",
"mcpName": "io.github.KryptosAI/mcp-observatory",
"license": "MIT",
"type": "module",
"private": false,
"homepage": "https://github.com/KryptosAI/mcp-observatory#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/KryptosAI/mcp-observatory.git"
},
"bugs": {
"url": "https://github.com/KryptosAI/mcp-observatory/issues"
},
"engines": {
"node": ">=20"
},
"publishConfig": {
"access": "public"
},
"main": "./dist/src/index.js",
"types": "./dist/src/index.d.ts",
"exports": {
".": "./dist/src/index.js"
},
"bin": {
"mcp-observatory": "./dist/src/cli.js"
},
"files": [
"dist/src",
"README.md",
"LICENSE",
"schemas"
],
"scripts": {
"build": "tsc -p tsconfig.json",
"cli": "tsx src/cli.ts",
"dashboard:build": "tsx scripts/build-dashboard.ts",
"integration:real": "tsx scripts/run-real-server-matrix.ts",
"lint": "eslint .",
"prepack": "npm run build",
"proof:refresh": "tsx scripts/refresh-proof-artifacts.ts",
"release:prep": "node scripts/release.mjs",
"typecheck": "tsc --noEmit -p tsconfig.json",
"test": "vitest run",
"validate:artifacts": "tsx scripts/validate-artifacts.ts",
"verify:packed-install": "node scripts/verify-packed-install.mjs",
"smoke": "npm run cli -- run --target tests/fixtures/sample-target-config.json && npm run cli -- diff tests/fixtures/sample-run-a.json tests/fixtures/sample-run-b.json"
},
"keywords": [
"mcp",
"mcp-server",
"model-context-protocol",
"ai-agent",
"ai-tools",
"developer-tools",
"cli",
"regression-testing",
"interoperability",
"observability",
"record",
"replay",
"cassette",
"vcr",
"mcp-testing",
"security",
"ci-cd",
"github-action",
"schema-drift"
],
"dependencies": {
"@modelcontextprotocol/sdk": "^1.27.1",
"ci-info": "^4.4.0",
"commander": "14.0.2",
"update-notifier": "^7.3.1",
"zod": "4.1.12"
},
"devDependencies": {
"@eslint/js": "9.39.1",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@types/node": "24.10.1",
"@typescript-eslint/eslint-plugin": "8.46.3",
"@typescript-eslint/parser": "8.46.3",
"ajv": "8.17.1",
"eslint": "9.39.1",
"globals": "16.5.0",
"semantic-release": "^25.0.3",
"tsx": "4.20.6",
"typescript": "5.9.3",
"typescript-eslint": "8.46.3",
"vitest": "4.0.8"
}
}