-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.66 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.66 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
{
"name": "@testcollab/mcp-server",
"version": "1.0.0",
"description": "MCP Server for TestCollab - Exposes test management functionality to AI assistants",
"type": "module",
"main": "dist/index.js",
"bin": {
"tc-mcp-server": "dist/index.js"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc",
"prepublishOnly": "npm run build",
"start": "node dist/index.js",
"dev": "tsx watch src/index.ts",
"test": "vitest run",
"test:unit": "vitest run tests/unit",
"test:integration": "vitest run tests/integration",
"test:watch": "vitest",
"lint": "eslint src/**/*.ts",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.0.0",
"@testcollab/sdk": "^3.10.0",
"zod": "^3.23.0"
},
"devDependencies": {
"@types/node": "^20.0.0",
"typescript": "^5.4.0",
"tsx": "^4.7.0",
"nodemon": "^3.1.0",
"vitest": "^2.0.0",
"eslint": "^8.57.0",
"@typescript-eslint/eslint-plugin": "^7.0.0",
"@typescript-eslint/parser": "^7.0.0"
},
"engines": {
"node": ">=20.0.0"
},
"keywords": [
"mcp",
"testcollab",
"test-management",
"ai",
"claude",
"model-context-protocol"
],
"author": "TestCollab",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/TCSoftInc/testcollab-mcp-server.git"
},
"bugs": {
"url": "https://github.com/TCSoftInc/testcollab-mcp-server/issues"
},
"homepage": "https://github.com/TCSoftInc/testcollab-mcp-server#readme",
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public",
"provenance": true
}
}