|
1 | 1 | { |
2 | | - "name": "gstack", |
3 | | - "version": "1.57.3.0", |
4 | | - "description": "Garry's Stack — Claude Code skills + fast headless browser. One repo, one install, entire AI engineering workflow.", |
5 | | - "license": "MIT", |
6 | | - "type": "module", |
7 | | - "bin": { |
8 | | - "browse": "./browse/dist/browse", |
9 | | - "make-pdf": "./make-pdf/dist/pdf" |
10 | | - }, |
11 | | - "scripts": { |
12 | | - "build": "bash scripts/build.sh", |
13 | | - "vendor:xterm": "mkdir -p extension/lib && cp node_modules/xterm/lib/xterm.js extension/lib/xterm.js && cp node_modules/xterm/css/xterm.css extension/lib/xterm.css && cp node_modules/xterm-addon-fit/lib/xterm-addon-fit.js extension/lib/xterm-addon-fit.js", |
14 | | - "dev:make-pdf": "bun run make-pdf/src/cli.ts", |
15 | | - "dev:design": "bun run design/src/cli.ts", |
16 | | - "gen:skill-docs": "bun run scripts/gen-skill-docs.ts", |
17 | | - "gen:skill-docs:user": "bun run scripts/gen-skill-docs.ts --respect-detection", |
18 | | - "dev": "bun run browse/src/cli.ts", |
19 | | - "server": "bun run browse/src/server.ts", |
20 | | - "test": "bun test browse/test/ test/ make-pdf/test/ --ignore 'test/skill-e2e-*.test.ts' --ignore test/skill-llm-eval.test.ts --ignore test/skill-routing-e2e.test.ts --ignore test/codex-e2e.test.ts --ignore test/gemini-e2e.test.ts && (bun run slop:diff 2>/dev/null || true)", |
21 | | - "test:free": "bun run scripts/test-free-shards.ts", |
22 | | - "test:windows": "bun run scripts/test-free-shards.ts --windows-only", |
23 | | - "test:evals": "EVALS=1 bun test --retry 2 --concurrent --max-concurrency ${EVALS_CONCURRENCY:-15} test/skill-llm-eval.test.ts test/skill-e2e-*.test.ts test/skill-routing-e2e.test.ts test/codex-e2e.test.ts test/gemini-e2e.test.ts", |
24 | | - "test:evals:all": "EVALS=1 EVALS_ALL=1 bun test --retry 2 --concurrent --max-concurrency ${EVALS_CONCURRENCY:-15} test/skill-llm-eval.test.ts test/skill-e2e-*.test.ts test/skill-routing-e2e.test.ts test/codex-e2e.test.ts test/gemini-e2e.test.ts", |
25 | | - "test:e2e": "EVALS=1 bun test --retry 2 --concurrent --max-concurrency ${EVALS_CONCURRENCY:-15} test/skill-e2e-*.test.ts test/skill-routing-e2e.test.ts test/codex-e2e.test.ts test/gemini-e2e.test.ts", |
26 | | - "test:e2e:all": "EVALS=1 EVALS_ALL=1 bun test --retry 2 --concurrent --max-concurrency ${EVALS_CONCURRENCY:-15} test/skill-e2e-*.test.ts test/skill-routing-e2e.test.ts test/codex-e2e.test.ts test/gemini-e2e.test.ts", |
27 | | - "test:gate": "EVALS=1 EVALS_TIER=gate bun test --retry 2 --concurrent --max-concurrency ${EVALS_CONCURRENCY:-15} test/skill-llm-eval.test.ts test/skill-e2e-*.test.ts test/skill-routing-e2e.test.ts test/codex-e2e.test.ts test/gemini-e2e.test.ts", |
28 | | - "test:periodic": "EVALS=1 EVALS_TIER=periodic EVALS_ALL=1 bun test --retry 2 --concurrent --max-concurrency ${EVALS_CONCURRENCY:-15} test/skill-e2e-*.test.ts test/skill-routing-e2e.test.ts test/codex-e2e.test.ts test/gemini-e2e.test.ts", |
29 | | - "test:codex": "EVALS=1 bun test test/codex-e2e.test.ts", |
30 | | - "test:codex:all": "EVALS=1 EVALS_ALL=1 bun test test/codex-e2e.test.ts", |
31 | | - "test:gemini": "EVALS=1 bun test test/gemini-e2e.test.ts", |
32 | | - "test:gemini:all": "EVALS=1 EVALS_ALL=1 bun test test/gemini-e2e.test.ts", |
33 | | - "skill:check": "bun run scripts/skill-check.ts", |
34 | | - "dev:skill": "bun run scripts/dev-skill.ts", |
35 | | - "start": "bun run browse/src/server.ts", |
36 | | - "eval:list": "bun run scripts/eval-list.ts", |
37 | | - "eval:compare": "bun run scripts/eval-compare.ts", |
38 | | - "eval:summary": "bun run scripts/eval-summary.ts", |
39 | | - "eval:watch": "bun run scripts/eval-watch.ts", |
40 | | - "eval:select": "bun run scripts/eval-select.ts", |
41 | | - "analytics": "bun run scripts/analytics.ts", |
42 | | - "test:audit": "bun test test/audit-compliance.test.ts", |
43 | | - "slop": "npx slop-scan scan . 2>/dev/null || echo 'slop-scan not available (install with: npm i -g slop-scan)'", |
44 | | - "slop:diff": "bun run scripts/slop-diff.ts" |
45 | | - }, |
46 | | - "dependencies": { |
47 | | - "@huggingface/transformers": "^4.1.0", |
48 | | - "@ngrok/ngrok": "^1.7.0", |
49 | | - "diff": "^7.0.0", |
50 | | - "marked": "^18.0.2", |
51 | | - "playwright": "^1.58.2", |
52 | | - "puppeteer-core": "^24.40.0", |
53 | | - "socks": "^2.8.8" |
54 | | - }, |
55 | | - "engines": { |
56 | | - "bun": ">=1.0.0" |
57 | | - }, |
58 | | - "keywords": [ |
59 | | - "browser", |
60 | | - "automation", |
61 | | - "playwright", |
62 | | - "headless", |
63 | | - "cli", |
64 | | - "claude", |
65 | | - "ai-agent", |
66 | | - "devtools" |
67 | | - ], |
68 | | - "devDependencies": { |
69 | | - "@anthropic-ai/claude-agent-sdk": "0.2.117", |
70 | | - "@anthropic-ai/sdk": "^0.78.0", |
71 | | - "xterm": "5", |
72 | | - "xterm-addon-fit": "^0.8.0" |
73 | | - } |
| 2 | + "name": "gstack", |
| 3 | + "version": "1.57.4.0", |
| 4 | + "description": "Garry's Stack — Claude Code skills + fast headless browser. One repo, one install, entire AI engineering workflow.", |
| 5 | + "license": "MIT", |
| 6 | + "type": "module", |
| 7 | + "bin": { |
| 8 | + "browse": "./browse/dist/browse", |
| 9 | + "make-pdf": "./make-pdf/dist/pdf" |
| 10 | + }, |
| 11 | + "scripts": { |
| 12 | + "build": "bash scripts/build.sh", |
| 13 | + "vendor:xterm": "mkdir -p extension/lib && cp node_modules/xterm/lib/xterm.js extension/lib/xterm.js && cp node_modules/xterm/css/xterm.css extension/lib/xterm.css && cp node_modules/xterm-addon-fit/lib/xterm-addon-fit.js extension/lib/xterm-addon-fit.js", |
| 14 | + "dev:make-pdf": "bun run make-pdf/src/cli.ts", |
| 15 | + "dev:design": "bun run design/src/cli.ts", |
| 16 | + "gen:skill-docs": "bun run scripts/gen-skill-docs.ts", |
| 17 | + "gen:skill-docs:user": "bun run scripts/gen-skill-docs.ts --respect-detection", |
| 18 | + "dev": "bun run browse/src/cli.ts", |
| 19 | + "server": "bun run browse/src/server.ts", |
| 20 | + "test": "bun test browse/test/ test/ make-pdf/test/ --ignore 'test/skill-e2e-*.test.ts' --ignore test/skill-llm-eval.test.ts --ignore test/skill-routing-e2e.test.ts --ignore test/codex-e2e.test.ts --ignore test/gemini-e2e.test.ts && (bun run slop:diff 2>/dev/null || true)", |
| 21 | + "test:free": "bun run scripts/test-free-shards.ts", |
| 22 | + "test:windows": "bun run scripts/test-free-shards.ts --windows-only", |
| 23 | + "test:evals": "EVALS=1 bun test --retry 2 --concurrent --max-concurrency ${EVALS_CONCURRENCY:-15} test/skill-llm-eval.test.ts test/skill-e2e-*.test.ts test/skill-routing-e2e.test.ts test/codex-e2e.test.ts test/gemini-e2e.test.ts", |
| 24 | + "test:evals:all": "EVALS=1 EVALS_ALL=1 bun test --retry 2 --concurrent --max-concurrency ${EVALS_CONCURRENCY:-15} test/skill-llm-eval.test.ts test/skill-e2e-*.test.ts test/skill-routing-e2e.test.ts test/codex-e2e.test.ts test/gemini-e2e.test.ts", |
| 25 | + "test:e2e": "EVALS=1 bun test --retry 2 --concurrent --max-concurrency ${EVALS_CONCURRENCY:-15} test/skill-e2e-*.test.ts test/skill-routing-e2e.test.ts test/codex-e2e.test.ts test/gemini-e2e.test.ts", |
| 26 | + "test:e2e:all": "EVALS=1 EVALS_ALL=1 bun test --retry 2 --concurrent --max-concurrency ${EVALS_CONCURRENCY:-15} test/skill-e2e-*.test.ts test/skill-routing-e2e.test.ts test/codex-e2e.test.ts test/gemini-e2e.test.ts", |
| 27 | + "test:gate": "EVALS=1 EVALS_TIER=gate bun test --retry 2 --concurrent --max-concurrency ${EVALS_CONCURRENCY:-15} test/skill-llm-eval.test.ts test/skill-e2e-*.test.ts test/skill-routing-e2e.test.ts test/codex-e2e.test.ts test/gemini-e2e.test.ts", |
| 28 | + "test:periodic": "EVALS=1 EVALS_TIER=periodic EVALS_ALL=1 bun test --retry 2 --concurrent --max-concurrency ${EVALS_CONCURRENCY:-15} test/skill-e2e-*.test.ts test/skill-routing-e2e.test.ts test/codex-e2e.test.ts test/gemini-e2e.test.ts", |
| 29 | + "test:codex": "EVALS=1 bun test test/codex-e2e.test.ts", |
| 30 | + "test:codex:all": "EVALS=1 EVALS_ALL=1 bun test test/codex-e2e.test.ts", |
| 31 | + "test:gemini": "EVALS=1 bun test test/gemini-e2e.test.ts", |
| 32 | + "test:gemini:all": "EVALS=1 EVALS_ALL=1 bun test test/gemini-e2e.test.ts", |
| 33 | + "skill:check": "bun run scripts/skill-check.ts", |
| 34 | + "dev:skill": "bun run scripts/dev-skill.ts", |
| 35 | + "start": "bun run browse/src/server.ts", |
| 36 | + "eval:list": "bun run scripts/eval-list.ts", |
| 37 | + "eval:compare": "bun run scripts/eval-compare.ts", |
| 38 | + "eval:summary": "bun run scripts/eval-summary.ts", |
| 39 | + "eval:watch": "bun run scripts/eval-watch.ts", |
| 40 | + "eval:select": "bun run scripts/eval-select.ts", |
| 41 | + "analytics": "bun run scripts/analytics.ts", |
| 42 | + "test:audit": "bun test test/audit-compliance.test.ts", |
| 43 | + "slop": "npx slop-scan scan . 2>/dev/null || echo 'slop-scan not available (install with: npm i -g slop-scan)'", |
| 44 | + "slop:diff": "bun run scripts/slop-diff.ts" |
| 45 | + }, |
| 46 | + "dependencies": { |
| 47 | + "@huggingface/transformers": "^4.1.0", |
| 48 | + "@ngrok/ngrok": "^1.7.0", |
| 49 | + "diff": "^7.0.0", |
| 50 | + "marked": "^18.0.2", |
| 51 | + "playwright": "^1.58.2", |
| 52 | + "puppeteer-core": "^24.40.0", |
| 53 | + "socks": "^2.8.8" |
| 54 | + }, |
| 55 | + "engines": { |
| 56 | + "bun": ">=1.0.0" |
| 57 | + }, |
| 58 | + "keywords": [ |
| 59 | + "browser", |
| 60 | + "automation", |
| 61 | + "playwright", |
| 62 | + "headless", |
| 63 | + "cli", |
| 64 | + "claude", |
| 65 | + "ai-agent", |
| 66 | + "devtools" |
| 67 | + ], |
| 68 | + "devDependencies": { |
| 69 | + "@anthropic-ai/claude-agent-sdk": "0.2.117", |
| 70 | + "@anthropic-ai/sdk": "^0.78.0", |
| 71 | + "xterm": "5", |
| 72 | + "xterm-addon-fit": "^0.8.0" |
| 73 | + } |
74 | 74 | } |
0 commit comments