-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.66 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.66 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
{
"name": "hyper-agent-browser",
"version": "0.4.0",
"description": "Pure browser automation CLI for AI Agents - 纯浏览器自动化 CLI,专为 AI Agent 设计",
"type": "module",
"main": "src/cli.ts",
"bin": {
"hab": "src/cli.ts"
},
"files": ["src/**/*", "README.md", "LICENSE"],
"scripts": {
"dev": "bun run src/cli.ts",
"build": "bun build --compile --minify src/cli.ts --outfile dist/hab",
"build:all": "bun run scripts/build-all.ts",
"test": "bun test",
"test:unit": "bun test tests/unit",
"test:integration": "bun test tests/integration",
"test:watch": "bun test --watch",
"test:coverage": "bun test --coverage",
"lint": "bunx @biomejs/biome check .",
"lint:fix": "bunx @biomejs/biome check --write .",
"typecheck": "bunx tsc --noEmit",
"prepublishOnly": "bun run typecheck && bun run lint"
},
"keywords": [
"browser-automation",
"cli",
"ai-agent",
"playwright",
"patchright",
"bun",
"typescript",
"automation",
"testing",
"web-scraping"
],
"author": {
"name": "Hubert",
"url": "https://github.com/hubo1989"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/hubo1989/hyper-agent-browser.git"
},
"bugs": {
"url": "https://github.com/hubo1989/hyper-agent-browser/issues"
},
"homepage": "https://github.com/hubo1989/hyper-agent-browser#readme",
"dependencies": {
"patchright": "^1.55.1",
"commander": "^12.0.0",
"zod": "^3.24.0"
},
"devDependencies": {
"@types/bun": "latest",
"@biomejs/biome": "^1.9.0",
"typescript": "^5.0.0"
},
"engines": {
"bun": ">=1.1.0"
}
}