-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.2 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.2 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
{
"name": "@codelytv/mcp-client",
"version": "0.7.0",
"description": "A typed TypeScript client for Model Context Protocol (MCP) servers",
"keywords": [
"mcp",
"model-context-protocol",
"testing",
"typescript"
],
"scripts": {
"build": "tsc",
"lint": "eslint src eslint.config.mjs",
"lint:fix": "npm run lint -- --fix",
"clean": "rm -rf dist"
},
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/CodelyTV/typescript-mcp-test-client"
},
"author": "codelytv",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/CodelyTV/typescript-mcp-client/issues"
},
"homepage": "https://github.com/CodelyTV/typescript-mcp-client#readme",
"dependencies": {
"@codelytv/primitives-type": "^3.1.0",
"@modelcontextprotocol/sdk": "^1.17.2"
},
"devDependencies": {
"@types/jest": "^29.5.14",
"@typescript-eslint/eslint-plugin": "^8.23.0",
"@typescript-eslint/parser": "^8.23.0",
"eslint": "^8.56.0",
"eslint-config-codely": "^4.4.0",
"eslint-import-resolver-typescript": "^3.7.0",
"jest": "^29.7.0",
"prettier": "^3.4.2",
"ts-jest": "^29.2.5",
"typescript": "^5.8.3"
},
"eslintIgnore": [
"dist/**/*"
]
}