-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.24 KB
/
Copy pathpackage.json
File metadata and controls
81 lines (81 loc) · 2.24 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "handraise",
"version": "0.7.0",
"description": "Human-in-the-loop handoff for Solari cloud browsers. Your agent already knows when it's stuck \u2014 handraise lets it raise its hand.",
"license": "MIT",
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist",
"README.md",
"LICENSE"
],
"repository": {
"type": "git",
"url": "git+https://github.com/Sy-D/handraise.git"
},
"homepage": "https://github.com/Sy-D/handraise#readme",
"bugs": "https://github.com/Sy-D/handraise/issues",
"keywords": [
"solari",
"human-in-the-loop",
"hitl",
"browser-automation",
"ai-agents",
"2fa",
"captcha",
"handoff",
"playwright"
],
"scripts": {
"build": "tsup",
"typecheck": "tsc --noEmit",
"lint": "biome check . && oxlint && bun scripts/embed-guest.ts --check && bun test-app/embed-app.ts --check && bun scripts/render-measured.ts --check",
"test": "bun test src/ test-app/ e2e/ui.spec.ts",
"test:coverage": "bun test --coverage src/ test-app/",
"test:e2e": "bun --env-file=.env e2e/handoff.e2e.ts",
"bench": "bun --env-file=.env e2e/bench.ts",
"bench:rescue": "bun --env-file=.env e2e/rescue-bench.ts",
"bench:mixed": "bun --env-file=.env e2e/mixed-bench.ts",
"prepublishOnly": "bun run lint && bun run typecheck && bun run test && bun run build"
},
"dependencies": {
"@solarisdk/browser": "^0.1.2",
"@solarisdk/sdk": "^0.1.2",
"jsqr": "1.4.0",
"qrcode-terminal": "^0.12.0",
"ws": "^8.21.3"
},
"peerDependencies": {
"playwright-core": ">=1.40.0"
},
"devDependencies": {
"@ai-sdk/anthropic": "^4.0.46",
"@ai-sdk/openai-compatible": "^3.0.41",
"@biomejs/biome": "^2.0.0",
"@oxlint/plugins": "1.80.0",
"@types/qrcode": "^1.5.6",
"@types/qrcode-terminal": "^0.12.2",
"@types/ws": "^8.5.13",
"ai": "^7.0.87",
"bun-types": "^1.4.0",
"oxlint": "1.80.0",
"playwright-core": "^1.62.1",
"qrcode": "^1.5.4",
"tsup": "^8.5.1",
"typescript": "^5.7.2"
},
"bin": {
"handraise": "./dist/cli.js"
},
"engines": {
"node": ">=20"
}
}