53 lines
1.4 KiB
JSON
53 lines
1.4 KiB
JSON
{
|
|
"name": "mcp-chrome-remote-server",
|
|
"version": "1.0.0",
|
|
"description": "Remote MCP Chrome Bridge Server",
|
|
"main": "dist/index.js",
|
|
"type": "module",
|
|
"scripts": {
|
|
"start": "node dist/index.js",
|
|
"start:server": "npm run build && npm run start",
|
|
"start:custom": "npm run build && PORT=8080 HOST=localhost npm run start",
|
|
"dev": "nodemon --watch src --ext ts,js,json --ignore dist/ --exec \"npm run build && npm run start\"",
|
|
"build": "tsc",
|
|
"test": "jest",
|
|
"lint": "eslint 'src/**/*.{js,ts}'",
|
|
"lint:fix": "eslint 'src/**/*.{js,ts}' --fix",
|
|
"format": "prettier --write 'src/**/*.{js,ts,json}'"
|
|
},
|
|
"keywords": [
|
|
"mcp",
|
|
"chrome",
|
|
"remote",
|
|
"server"
|
|
],
|
|
"author": "hangye",
|
|
"license": "MIT",
|
|
"dependencies": {
|
|
"@fastify/cors": "^11.0.1",
|
|
"@fastify/websocket": "^11.0.1",
|
|
"@modelcontextprotocol/sdk": "^1.12.1",
|
|
"chalk": "^5.4.1",
|
|
"chrome-mcp-shared": "workspace:*",
|
|
"dotenv": "^16.5.0",
|
|
"eventsource": "^4.0.0",
|
|
"fastify": "^5.3.2",
|
|
"node-fetch": "^3.3.2",
|
|
"pino": "^9.6.0",
|
|
"pino-pretty": "^13.0.0",
|
|
"uuid": "^11.1.0",
|
|
"ws": "^8.18.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/jest": "^29.5.14",
|
|
"@types/node": "^22.15.3",
|
|
"@types/ws": "^8.5.13",
|
|
"@typescript-eslint/parser": "^8.31.1",
|
|
"eslint": "^9.26.0",
|
|
"jest": "^29.7.0",
|
|
"nodemon": "^3.1.10",
|
|
"prettier": "^3.5.3",
|
|
"typescript": "^5.8.3"
|
|
}
|
|
}
|