mirror of
https://github.com/garrytan/gstack.git
synced 2026-05-05 05:05:08 +02:00
effb88ab66
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
35 lines
740 B
JSON
35 lines
740 B
JSON
{
|
|
"name": "gstack-browse",
|
|
"version": "0.1.0",
|
|
"description": "Fast headless browser CLI for AI coding agents. Persistent Chromium daemon with sub-200ms commands.",
|
|
"license": "MIT",
|
|
"type": "module",
|
|
"bin": {
|
|
"browse": "./dist/browse"
|
|
},
|
|
"scripts": {
|
|
"build": "bun build --compile src/cli.ts --outfile dist/browse",
|
|
"dev": "bun run src/cli.ts",
|
|
"server": "bun run src/server.ts",
|
|
"test": "bun test",
|
|
"start": "bun run src/server.ts"
|
|
},
|
|
"dependencies": {
|
|
"playwright": "^1.58.2",
|
|
"diff": "^7.0.0"
|
|
},
|
|
"engines": {
|
|
"bun": ">=1.0.0"
|
|
},
|
|
"keywords": [
|
|
"browser",
|
|
"automation",
|
|
"playwright",
|
|
"headless",
|
|
"cli",
|
|
"claude",
|
|
"ai-agent",
|
|
"devtools"
|
|
]
|
|
}
|