-
-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.24 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.24 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
{
"name": "@bun913/mcp-testrail",
"author": "bun913",
"homepage": "https://github.com/bun913/mcp-testrail",
"private": false,
"publishConfig": {
"access": "public"
},
"version": "0.19.5",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"README.md"
],
"scripts": {
"start:stdio": "node dist/stdio.js",
"format": "biome format --write ./src",
"test": "vitest ./test --reporter=verbose --coverage",
"test:ci": "vitest run ./test --silent --coverage --reporter=verbose",
"build": "tsc",
"prepublishOnly": "npm run build",
"playwright-cli": "playwright-cli"
},
"devDependencies": {
"@types/node": "^22.13.14",
"@vitest/coverage-v8": "^3.0.9",
"typescript": "~5.7.2",
"@playwright/cli": "^0.1.1",
"vitest": "^3.0.9"
},
"dependencies": {
"@biomejs/biome": "^1.9.4",
"@modelcontextprotocol/sdk": "^1.27.1",
"axios": "^1.15.0",
"dotenv": "^16.4.5",
"form-data": "^4.0.0",
"zod": "^3.24.2"
},
"engines": {
"node": ">=20.18.1"
},
"bin": {
"mcp-testrail": "./dist/stdio.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bun913/mcp-testrail.git"
},
"license": "MIT"
}