package.jsonโข3.15 kB
{
"name": "electron-mcp-server",
"version": "1.5.0",
"description": "MCP server for Electron application automation and management. See MCP_USAGE_GUIDE.md for proper argument structure examples.",
"main": "dist/index.js",
"bin": {
"electron-mcp-server": "dist/index.js"
},
"scripts": {
"build": "webpack --config webpack.config.ts --mode production",
"build:dev": "webpack --config webpack.config.ts --mode development",
"dev": "tsx src/index.ts",
"dev:watch": "tsx --watch src/index.ts",
"start": "node dist/index.js",
"watch": "webpack --config webpack.config.ts --mode development --watch",
"watch-and-serve": "webpack --config webpack.config.ts --mode development --watch & node --watch dist/index.js",
"prepare": "npm run build",
"test": "vitest run",
"test:watch": "vitest",
"test:ui": "vitest --ui",
"test:react": "cd tests/integration/react-compatibility && electron test-react-electron.cjs",
"test:coverage": "vitest run --coverage",
"test:security": "npm run build && node test/security-test.js",
"test:clean": "tsx -e \"import('./test/utils/cleanup.js').then(m => m.TestCleanup.cleanup())\"",
"lint": "eslint src/**/*.ts",
"lint:fix": "eslint src/**/*.ts --fix",
"format": "prettier --write \"src/**/*.{ts,js,json,md}\"",
"format:check": "prettier --check \"src/**/*.{ts,js,json,md}\"",
"code:check": "npm run lint && npm run format:check",
"code:fix": "npm run lint:fix && npm run format"
},
"keywords": [
"mcp",
"electron",
"automation",
"desktop",
"model-context-protocol",
"devtools",
"testing",
"ai",
"chrome-devtools-protocol",
"screenshot",
"electron-automation"
],
"author": "Halil Ural",
"license": "MIT",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.0.0",
"@types/ws": "^8.18.1",
"dotenv": "^17.2.1",
"electron": "^28.0.0",
"playwright": "^1.54.1",
"ws": "^8.18.3",
"zod": "^3.22.4",
"zod-to-json-schema": "^3.22.4"
},
"devDependencies": {
"@eslint/js": "^9.32.0",
"@types/node": "^20.19.10",
"@types/webpack": "^5.28.5",
"@types/webpack-node-externals": "^3.0.4",
"@typescript-eslint/eslint-plugin": "^8.38.0",
"@typescript-eslint/parser": "^8.38.0",
"@vitest/coverage-v8": "^3.2.4",
"@vitest/ui": "^3.2.4",
"eslint": "^9.32.0",
"globals": "^16.3.0",
"jest": "^29.0.0",
"jiti": "^2.5.1",
"prettier": "^3.6.2",
"ts-jest": "^29.0.0",
"ts-loader": "^9.5.2",
"ts-node": "^10.9.2",
"tsx": "^4.6.0",
"typescript": "^5.8.3",
"typescript-eslint": "^8.38.0",
"vitest": "^3.2.4",
"webpack": "^5.101.0",
"webpack-cli": "^6.0.1",
"webpack-node-externals": "^3.0.0"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"engines": {
"node": ">=18.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/halilural/electron-mcp-server.git"
},
"bugs": {
"url": "https://github.com/halilural/electron-mcp-server/issues"
},
"homepage": "https://github.com/halilural/electron-mcp-server#readme"
}