Files
BrowserOS/package.json
2025-10-09 15:47:57 -07:00

70 lines
3.2 KiB
JSON

{
"name": "browseros-mcp",
"version": "0.0.1",
"description": "MCP server for BrowserOS",
"type": "module",
"bin": "./src/index.ts",
"main": "src/index.ts",
"scripts": {
"start": "bun src/index.ts",
"start-debug": "DEBUG=mcp:* DEBUG_COLORS=false bun src/index.ts",
"test": "bun test",
"typecheck": "tsc --noEmit",
"build:binary": "bun build --compile src/index.ts --outfile browseros-mcp --minify --bytecode --target bun-linux-x64",
"build:binary:macos": "bun build --compile src/index.ts --outfile browseros-mcp --minify --bytecode --target bun-darwin-arm64",
"build:binary:windows": "bun build --compile src/index.ts --outfile browseros-mcp.exe --minify --bytecode --target bun-windows-x64",
"dist": "rimraf dist && mkdir -p dist && bun build --compile src/index.ts --outfile dist/browseros-mcp-linux-x64 --minify --sourcemap --target=bun-linux-x64-modern && bun build --compile src/index.ts --outfile dist/browseros-mcp-linux-arm64 --minify --sourcemap --target=bun-linux-arm64 && bun build --compile src/index.ts --outfile dist/browseros-mcp-windows-x64.exe --minify --sourcemap --target=bun-windows-x64-modern && bun build --compile src/index.ts --outfile dist/browseros-mcp-darwin-arm64 --minify --sourcemap --target=bun-darwin-arm64 && bun build --compile src/index.ts --outfile dist/browseros-mcp-darwin-x64 --minify --sourcemap --target=bun-darwin-x64",
"format": "eslint --cache --fix . && prettier --write --cache .",
"check-format": "eslint --cache . && prettier --check --cache .;",
"docs": "npm run docs:generate && npm run format",
"docs:generate": "node --experimental-strip-types scripts/generate-docs.ts",
"prepare": "node --experimental-strip-types scripts/prepare.ts",
"sync-server-json-version": "node --experimental-strip-types scripts/sync-server-json-version.ts && npm run format",
"clean": "rimraf build dist browseros-mcp browseros-mcp.exe"
},
"files": [
"src",
"LICENSE"
],
"repository": "ChromeDevTools/chrome-devtools-mcp",
"author": "BrowserOS",
"license": "AGPL-3.0-or-later",
"bugs": {
"url": "https://github.com/ChromeDevTools/chrome-devtools-mcp/issues"
},
"homepage": "https://github.com/ChromeDevTools/chrome-devtools-mcp#readme",
"mcpName": "io.github.ChromeDevTools/chrome-devtools-mcp",
"dependencies": {
"@modelcontextprotocol/sdk": "1.19.1",
"core-js": "3.45.1",
"debug": "4.4.3",
"puppeteer-core": "24.23.0"
},
"devDependencies": {
"@eslint/js": "^9.35.0",
"@stylistic/eslint-plugin": "^5.4.0",
"@types/bun": "latest",
"@types/debug": "^4.1.12",
"@types/filesystem": "^0.0.36",
"@types/node": "^24.3.3",
"@types/sinon": "^17.0.4",
"@typescript-eslint/eslint-plugin": "^8.43.0",
"@typescript-eslint/parser": "^8.43.0",
"chrome-devtools-frontend": "1.0.1524741",
"eslint": "^9.35.0",
"eslint-import-resolver-typescript": "^4.4.4",
"eslint-plugin-import": "^2.32.0",
"globals": "^16.4.0",
"prettier": "^3.6.2",
"puppeteer": "24.23.0",
"rimraf": "^6.0.1",
"sinon": "^21.0.0",
"typescript": "^5.9.2",
"typescript-eslint": "^8.43.0"
},
"engines": {
"bun": ">=1.0.0",
"node": "^20.19.0 || ^22.12.0 || >=23"
}
}