-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
99 lines (99 loc) · 2.39 KB
/
Copy pathpackage.json
File metadata and controls
99 lines (99 loc) · 2.39 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
97
98
99
{
"name": "mcpvals",
"version": "0.4.0",
"description": "Evaluation library for Model Context Protocol servers",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
"bin": {
"mcpvals": "dist/cli/index.js"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"./vitest": {
"types": "./dist/vitest/index.d.ts",
"import": "./dist/vitest/index.js",
"require": "./dist/vitest/index.cjs"
}
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"repository": {
"directory": ".",
"type": "git",
"url": "git+https://github.com/Kylejeong2/mcpvals.git"
},
"bugs": {
"url": "https://github.com/Kylejeong2/mcpvals/issues"
},
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"test": "vitest",
"typecheck": "tsc --noEmit",
"version-packages": "changeset version",
"changeset": "changeset",
"release": "pnpm build && changeset publish",
"release-canary": "pnpm build && changeset version --snapshot && changeset publish --tag alpha",
"format": "prettier --write .",
"lint": "eslint . --fix",
"pre-commit": "lint-staged",
"postinstall": "pnpm build",
"prepare": "husky"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,json,css,scss,md}": [
"prettier --check",
"eslint --fix"
]
},
"keywords": [
"mcp",
"evaluation",
"testing",
"llm",
"ai"
],
"author": "Kylejeong2",
"license": "Apache-2.0",
"dependencies": {
"@ai-sdk/anthropic": "^1.2.12",
"@ai-sdk/openai": "^1.3.22",
"@composio/json-schema-to-zod": "^0.1.18",
"@modelcontextprotocol/sdk": "^1.12.0",
"ai": "^4.3.16",
"chalk": "^5.3.0",
"commander": "^11.1.0",
"execa": "^8.0.1",
"zod": "^3.25.0"
},
"devDependencies": {
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "^2.27.12",
"@eslint/js": "^9.30.0",
"@types/node": "^22.15.8",
"eslint": "^9.30.0",
"eslint-plugin-react": "^7.37.5",
"globals": "^16.2.0",
"husky": "^9.1.7",
"lint-staged": "^15.2.10",
"prettier": "3.6.2",
"tsup": "^8.0.0",
"typescript": "^5.0.0",
"typescript-eslint": "^8.35.0",
"vitest": "^3.2.1"
},
"peerDependenciesMeta": {},
"packageManager": "pnpm@9.4.0",
"publishConfig": {
"access": "public",
"provenance": false
}
}