Files

47 lines
1012 B
JSON
Raw Permalink Normal View History

2026-02-14 16:40:27 +05:30
{
2026-02-14 16:49:12 +05:30
"name": "@runablehq/mini-browser",
2026-04-29 18:26:51 +05:30
"version": "1.0.0",
2026-02-14 16:40:27 +05:30
"type": "module",
2026-02-14 16:49:12 +05:30
"description": "A browser CLI for agents, built with Puppeteer",
2026-05-30 13:56:38 +05:30
"repository": {
"type": "git",
"url": "git+https://github.com/runablehq/mini-browser.git"
},
2026-02-14 16:49:12 +05:30
"keywords": [
"browser",
"cli",
"puppeteer",
"automation",
"agent",
"screenshot",
"headless"
],
2026-02-14 16:40:27 +05:30
"bin": {
2026-05-30 14:01:28 +05:30
"mb": "dist/mb.js",
"mb-start-chrome": "scripts/start-chrome.sh",
"mb-restart-chrome": "scripts/restart-chrome.sh"
2026-02-14 16:40:27 +05:30
},
2026-02-14 16:49:12 +05:30
"files": [
"dist",
2026-05-30 14:01:28 +05:30
"scripts/start-chrome.sh",
"scripts/restart-chrome.sh",
2026-02-14 16:49:12 +05:30
"README.md"
],
2026-02-14 16:40:27 +05:30
"scripts": {
2026-02-14 16:49:12 +05:30
"build": "node scripts/build.js",
"build:binary": "bun build src/index.ts --compile --outfile dist/mb",
"prepublishOnly": "npm run build"
2026-02-14 16:40:27 +05:30
},
"dependencies": {
"puppeteer-core": "^24.37.3"
},
"devDependencies": {
2026-02-14 16:49:12 +05:30
"@types/bun": "latest",
2026-02-14 17:13:55 +05:30
"esbuild": "^0.25.12",
"typescript": "^5.9.3"
2026-02-14 16:49:12 +05:30
},
"engines": {
"node": ">=18"
2026-02-14 16:40:27 +05:30
}
}