mirror of
https://github.com/garrytan/gstack.git
synced 2026-05-06 21:46:40 +02:00
refactor: reorganize codebase — move browse CLI to browse/ directory
Restructure project layout: src/ → browse/src/, test/ → browse/test/. Add snapshot testing. Update docs, package.json, and skills integration. Add setup script and TODO tracking. Co-Authored-By: Claude Haiku 4.5 <noreply@anthropic.com>
This commit is contained in:
+8
-8
@@ -1,18 +1,18 @@
|
||||
{
|
||||
"name": "gstack-browse",
|
||||
"version": "0.1.0",
|
||||
"description": "Fast headless browser for Claude Code. Persistent Chromium daemon, ~100ms commands, zero MCP overhead.",
|
||||
"name": "gstack",
|
||||
"version": "0.2.0",
|
||||
"description": "Garry's Stack — Claude Code skills + fast headless browser. One repo, one install, entire AI engineering workflow.",
|
||||
"license": "MIT",
|
||||
"type": "module",
|
||||
"bin": {
|
||||
"browse": "./dist/browse"
|
||||
"browse": "./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",
|
||||
"build": "bun build --compile browse/src/cli.ts --outfile browse/dist/browse",
|
||||
"dev": "bun run browse/src/cli.ts",
|
||||
"server": "bun run browse/src/server.ts",
|
||||
"test": "bun test",
|
||||
"start": "bun run src/server.ts"
|
||||
"start": "bun run browse/src/server.ts"
|
||||
},
|
||||
"dependencies": {
|
||||
"playwright": "^1.58.2",
|
||||
|
||||
Reference in New Issue
Block a user