-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.31 KB
/
Copy pathpackage.json
File metadata and controls
56 lines (56 loc) · 1.31 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
{
"name": "mcproof",
"version": "0.3.0-alpha.5",
"description": "A framework for testing MCP servers",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"mcproof": "bin/mcproof.js"
},
"files": [
"dist",
"bin",
"resources"
],
"scripts": {
"build": "tsc -p tsconfig.json",
"test": "npm run build && MCPROOF_SKIP_PREFLIGHT=1 node ./bin/mcproof.js test",
"lint": "eslint . --ext .ts",
"prepare": "npm run build",
"release": "changeset publish"
},
"keywords": [
"mcp",
"testing",
"integration-test",
"mcp-server"
],
"author": "",
"license": "MIT",
"devDependencies": {
"@changesets/cli": "^2.30.0",
"@types/node": "^20.14.2",
"@typescript-eslint/eslint-plugin": "^8.57.2",
"@typescript-eslint/parser": "^8.57.2",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jest": "^29.15.1",
"prettier": "^3.1.4"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.28.0",
"@types/jest": "^29.5.3",
"dotenv": "^16.6.1",
"jest": "^29.6.4",
"ts-jest": "^29.4.6",
"typescript": "^5.9.3"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nathanielcaron/mcproof.git"
},
"publishConfig": {
"access": "public"
},
"packageManager": "npm@11.5.1"
}