-
Notifications
You must be signed in to change notification settings - Fork 25
Expand file tree
/
Copy pathpackage.json
More file actions
107 lines (107 loc) · 3.12 KB
/
package.json
File metadata and controls
107 lines (107 loc) · 3.12 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
100
101
102
103
104
105
106
107
{
"name": "firefox-devtools-mcp",
"version": "0.9.2",
"description": "Model Context Protocol (MCP) server for Firefox DevTools automation",
"author": "Mozilla",
"license": "MIT",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"firefox-devtools-mcp": "./dist/index.js"
},
"scripts": {
"dev": "tsx watch src/index.ts",
"build": "tsup",
"start": "node dist/index.js",
"setup": "node scripts/setup-mcp-config.js",
"clean": "rm -rf dist",
"typecheck": "tsc --noEmit",
"lint": "eslint src --ext .ts",
"lint:fix": "eslint src --ext .ts --fix",
"format": "prettier --write \"src/**/*.ts\" \"tests/**/*.ts\"",
"format:check": "prettier --check \"src/**/*.ts\" \"tests/**/*.ts\"",
"check": "npm run lint:fix && npm run typecheck",
"check:all": "npm run check && npm run test:run && npm run build",
"prepublishOnly": "npm run clean && npm run build",
"inspector": "npx @modelcontextprotocol/inspector node dist/index.js",
"inspector:dev": "NODE_ENV=development npx @modelcontextprotocol/inspector npx tsx src/index.ts",
"test": "vitest",
"test:run": "vitest run",
"test:unit": "vitest run --exclude 'tests/integration/**'",
"test:coverage": "vitest run --coverage",
"test:watch": "vitest watch",
"test:ui": "vitest --ui",
"test:tools": "node scripts/test-bidi-devtools.js",
"test:input": "node scripts/test-input-tools.js",
"test:screenshot": "node scripts/test-screenshot.js",
"test:dialog": "node scripts/test-dialog.js",
"test:integration:win": "node scripts/run-integration-tests-windows.mjs"
},
"keywords": [
"mcp",
"mcp-server",
"model-context-protocol",
"firefox",
"firefox-devtools",
"browser-automation",
"webdriver-bidi",
"selenium",
"devtools",
"browser-testing",
"web-automation",
"claude",
"claude-ai",
"ai-agent",
"llm"
],
"engines": {
"node": ">=20.19.0"
},
"dependencies": {
"@modelcontextprotocol/sdk": "1.29.0",
"geckodriver": "6.0.2",
"selenium-webdriver": "4.36.0",
"ws": "8.18.3",
"yargs": "17.7.2"
},
"devDependencies": {
"@types/jsdom": "28.0.0",
"@types/node": "24.1.0",
"@types/selenium-webdriver": "4.35.1",
"@types/ws": "8.18.1",
"@types/yargs": "17.0.32",
"@typescript-eslint/eslint-plugin": "8.58.0",
"@typescript-eslint/parser": "8.58.0",
"@vitest/coverage-v8": "3.1.4",
"@vitest/ui": "3.1.4",
"dotenv": "17.2.1",
"eslint": "8.57.1",
"eslint-config-prettier": "10.1.5",
"eslint-plugin-prettier": "5.4.0",
"jsdom": "28.1.0",
"prettier": "3.5.3",
"tsup": "8.5.0",
"tsx": "4.21.0",
"typescript": "5.3.3",
"vitest": "3.1.4"
},
"files": [
"dist",
"README.md",
"LICENSE",
"scripts",
"plugins"
],
"repository": {
"type": "git",
"url": "git+https://github.com/mozilla/firefox-devtools-mcp.git"
},
"bugs": {
"url": "https://github.com/mozilla/firefox-devtools-mcp/issues"
},
"homepage": "https://github.com/mozilla/firefox-devtools-mcp#readme",
"publishConfig": {
"access": "public"
}
}