Files
runablehq__mini-browser/package.json
T
shashwat-runable 77b4869284 feat tabId
2026-04-29 18:26:51 +05:30

42 lines
864 B
JSON

{
"name": "@runablehq/mini-browser",
"version": "1.0.0",
"type": "module",
"description": "A browser CLI for agents, built with Puppeteer",
"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",
"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"
}
}