mirror of
https://github.com/runablehq/mini-browser.git
synced 2026-09-20 13:45:46 +08:00
42 lines
864 B
JSON
42 lines
864 B
JSON
{
|
|
"name": "@runablehq/mini-browser",
|
|
"version": "0.3.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"
|
|
}
|
|
}
|