-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 1.92 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 1.92 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
{
"name": "@testingbot/mcp-server",
"version": "1.0.1",
"main": "dist/index.js",
"type": "module",
"mcpName": "io.testingbot/mcp-server",
"repository": {
"type": "git",
"url": "git+https://github.com/testingbot/mcp-server.git"
},
"scripts": {
"build": "npm run lint && npm run format && npm test && tsc",
"start": "node dist/index.js",
"dev": "NODE_ENV=development tsx watch --clear-screen=false src/index.ts",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"lint": "eslint . --ext .ts",
"lint:fix": "eslint . --ext .ts --fix",
"format": "prettier --write \"src/**/*.ts\"",
"format:check": "prettier --check \"src/**/*.ts\""
},
"bin": {
"testingbot-mcp-server": "dist/index.js"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"engines": {
"node": ">=18"
},
"keywords": [
"mcp",
"testingbot",
"model-context-protocol",
"testing",
"selenium",
"browser-testing",
"mobile-testing",
"cross-browser",
"ai-tools"
],
"author": "TestingBot",
"license": "MIT",
"description": "TestingBot's official MCP Server for AI-powered testing automation",
"homepage": "https://github.com/testingbot/mcp-server#readme",
"bugs": {
"url": "https://github.com/testingbot/mcp-server/issues"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.0.4",
"dotenv": "^16.4.5",
"pino": "^9.6.0",
"pino-pretty": "^13.0.0",
"testingbot-api": "^1.1.0",
"zod": "^3.24.1"
},
"devDependencies": {
"@eslint/js": "^9.25.0",
"@types/node": "^22.14.1",
"@typescript-eslint/eslint-plugin": "^8.30.1",
"@typescript-eslint/parser": "^8.30.1",
"@vitest/coverage-v8": "^3.1.3",
"eslint": "^9.25.0",
"prettier": "^3.5.3",
"tsx": "^4.19.3",
"typescript": "^5.8.3",
"typescript-eslint": "^8.30.1",
"vite": "^6.3.5",
"vitest": "^3.1.3"
}
}