-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 2.35 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 2.35 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "gstack-windows",
"version": "0.5.1",
"description": "Windows + Codex browser automation with persistent Chrome login sessions, authenticated QA workflows, and practical Windows-first docs.",
"license": "MIT",
"type": "module",
"homepage": "https://github.com/xiaoliangliang/gstack-windows",
"repository": {
"type": "git",
"url": "https://github.com/xiaoliangliang/gstack-windows.git"
},
"bugs": {
"url": "https://github.com/xiaoliangliang/gstack-windows/issues"
},
"bin": {
"browse": "./browse/dist/browse"
},
"scripts": {
"build": "bun run gen:skill-docs && bun build --compile browse/src/cli.ts --outfile browse/dist/browse && bun build --compile browse/src/find-browse.ts --outfile browse/dist/find-browse && git rev-parse HEAD > browse/dist/.version && rm -f .*.bun-build 2>/dev/null || true",
"gen:skill-docs": "bun run scripts/gen-skill-docs.ts",
"dev": "bun run browse/src/cli.ts",
"server": "bun run browse/src/server.ts",
"test": "bun test browse/test/ test/ --ignore test/skill-e2e.test.ts --ignore test/skill-llm-eval.test.ts",
"test:smoke": "bun test test/gen-skill-docs.test.ts browse/test/find-browse.test.ts browse/test/config.test.ts",
"test:evals": "EVALS=1 bun test test/skill-llm-eval.test.ts test/skill-e2e.test.ts",
"test:e2e": "EVALS=1 bun test test/skill-e2e.test.ts",
"ci:check": "bun run gen:skill-docs --dry-run && bun run skill:check && bun run test:smoke",
"skill:check": "bun run scripts/skill-check.ts",
"dev:skill": "bun run scripts/dev-skill.ts",
"start": "bun run browse/src/server.ts",
"eval:list": "bun run scripts/eval-list.ts",
"eval:compare": "bun run scripts/eval-compare.ts",
"eval:summary": "bun run scripts/eval-summary.ts",
"eval:watch": "bun run scripts/eval-watch.ts"
},
"dependencies": {
"playwright": "^1.58.2",
"diff": "^7.0.0",
"tsx": "^4.21.0"
},
"engines": {
"bun": ">=1.0.0"
},
"keywords": [
"gstack",
"gstack-windows",
"codex",
"windows",
"browser",
"automation",
"playwright",
"headless",
"cli",
"chrome-login-session",
"cookie-import",
"app-bound-cookie-encryption",
"ai-agent",
"devtools",
"authenticated-browser",
"windows-automation",
"douyin",
"codex-skill"
],
"devDependencies": {
"@anthropic-ai/sdk": "^0.78.0"
}
}