Files
2026-05-30 14:01:28 +05:30

47 lines
1012 B
JSON

{
"name": "@runablehq/mini-browser",
"version": "1.0.0",
"type": "module",
"description": "A browser CLI for agents, built with Puppeteer",
"repository": {
"type": "git",
"url": "git+https://github.com/runablehq/mini-browser.git"
},
"keywords": [
"browser",
"cli",
"puppeteer",
"automation",
"agent",
"screenshot",
"headless"
],
"bin": {
"mb": "dist/mb.js",
"mb-start-chrome": "scripts/start-chrome.sh",
"mb-restart-chrome": "scripts/restart-chrome.sh"
},
"files": [
"dist",
"scripts/start-chrome.sh",
"scripts/restart-chrome.sh",
"README.md"
],
"scripts": {
"build": "node scripts/build.js",
"build:binary": "bun build src/index.ts --compile --outfile dist/mb",
"prepublishOnly": "npm run build"
},
"dependencies": {
"puppeteer-core": "^24.37.3"
},
"devDependencies": {
"@types/bun": "latest",
"esbuild": "^0.25.12",
"typescript": "^5.9.3"
},
"engines": {
"node": ">=18"
}
}