mirror of
https://github.com/SawyerHood/dev-browser.git
synced 2026-09-20 13:44:44 +08:00
53 lines
1.3 KiB
JSON
53 lines
1.3 KiB
JSON
{
|
|
"name": "dev-browser",
|
|
"version": "1.0.0-rc.3",
|
|
"description": "Browser automation CLI for coding agents: Puppeteer scripts, named pages, snapshot refs, one warm daemon.",
|
|
"license": "MIT",
|
|
"type": "module",
|
|
"bin": {
|
|
"dev-browser": "bin/dev-browser.cjs"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/SawyerHood/dev-browser.git"
|
|
},
|
|
"scripts": {
|
|
"build:daemon": "bun run scripts/build.ts daemon",
|
|
"build": "bun run scripts/build.ts all",
|
|
"dev": "bun run src/cli/main.ts",
|
|
"test": "bun test --timeout 120000",
|
|
"bench": "bun run bench/run.ts",
|
|
"typecheck": "bunx tsc --noEmit",
|
|
"help:gen": "bun run scripts/gen-help.ts",
|
|
"postinstall": "node scripts/postinstall.cjs"
|
|
},
|
|
"devDependencies": {
|
|
"@puppeteer/browsers": "3.0.6",
|
|
"@types/bun": "1.3.14",
|
|
"@types/node": "24.3.0",
|
|
"acorn": "8.15.0",
|
|
"puppeteer-core": "25.8.0",
|
|
"typescript": "5.9.2",
|
|
"yauzl": "3.4.0"
|
|
},
|
|
"files": [
|
|
"bin/dev-browser.cjs",
|
|
"scripts/postinstall.cjs",
|
|
"scripts/download-binary.cjs",
|
|
"README.md",
|
|
"LICENSE",
|
|
"docs/help.md",
|
|
"skills/"
|
|
],
|
|
"keywords": [
|
|
"browser",
|
|
"automation",
|
|
"puppeteer",
|
|
"cli",
|
|
"agent",
|
|
"claude-code",
|
|
"codex"
|
|
],
|
|
"author": "Sawyer Hood"
|
|
}
|