@tangle-network/browser-agent-driver 0.18.0 → 0.20.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +17 -17
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tangle-network/browser-agent-driver",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.20.0",
|
|
4
4
|
"description": "LLM-driven browser agent for UI automation, testing, and evaluation",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public"
|
|
@@ -26,23 +26,23 @@
|
|
|
26
26
|
"scripts": {
|
|
27
27
|
"postinstall": "node ./scripts/postinstall-provider-patches.mjs",
|
|
28
28
|
"build": "tsc && node ./scripts/copy-static-assets.mjs",
|
|
29
|
-
"lint": "tsc --noEmit",
|
|
30
|
-
"check:boundaries": "node ./scripts/check-boundaries.mjs",
|
|
31
29
|
"dev": "tsc --watch",
|
|
32
30
|
"clean": "rm -rf dist",
|
|
31
|
+
"lint": "tsc --noEmit",
|
|
32
|
+
"check:boundaries": "node ./scripts/check-boundaries.mjs",
|
|
33
33
|
"test": "vitest run",
|
|
34
34
|
"test:watch": "vitest",
|
|
35
35
|
"changeset": "changeset",
|
|
36
36
|
"version-packages": "changeset version && pnpm install --lockfile-only --no-frozen-lockfile",
|
|
37
37
|
"release-tag": "node ./scripts/release-tag.mjs",
|
|
38
|
+
"skills:install": "node ./scripts/install-skills.mjs",
|
|
38
39
|
"auth:save-state": "node ./scripts/save-storage-state.mjs",
|
|
39
40
|
"auth:check-state": "node ./scripts/check-storage-state.mjs",
|
|
40
|
-
"
|
|
41
|
-
"
|
|
42
|
-
"
|
|
43
|
-
"
|
|
44
|
-
"
|
|
45
|
-
"bench:classify": "node ./scripts/reliability-scorecard.mjs",
|
|
41
|
+
"bench:validate": "node ./scripts/run-multi-rep.mjs",
|
|
42
|
+
"bench:compete": "node ./scripts/run-competitive.mjs",
|
|
43
|
+
"ab:experiment": "node ./scripts/run-ab-experiment.mjs",
|
|
44
|
+
"research:pipeline": "node ./scripts/run-research-pipeline.mjs",
|
|
45
|
+
"research:cycle": "node ./scripts/run-research-cycle.mjs",
|
|
46
46
|
"bench:tier1:gate": "node ./scripts/run-tier1-gate.mjs",
|
|
47
47
|
"bench:tier2:gate": "node ./scripts/run-tier2-gate.mjs",
|
|
48
48
|
"bench:tier2:repeat": "node ./scripts/run-tier2-repeat-gate.mjs",
|
|
@@ -51,19 +51,19 @@
|
|
|
51
51
|
"bench:local:tier1": "node ./scripts/run-local-reliability.mjs --profile tier1",
|
|
52
52
|
"bench:local:tier2": "node ./scripts/run-local-reliability.mjs --profile tier2",
|
|
53
53
|
"bench:local:nightly": "node ./scripts/run-local-reliability.mjs --profile nightly",
|
|
54
|
-
"ab:experiment": "node ./scripts/run-ab-experiment.mjs",
|
|
55
|
-
"bench:validate": "node ./scripts/run-multi-rep.mjs",
|
|
56
|
-
"research:cycle": "node ./scripts/run-research-cycle.mjs",
|
|
57
|
-
"research:pipeline": "node ./scripts/run-research-pipeline.mjs",
|
|
58
|
-
"design:bench": "pnpm tsx bench/design/run-design-bench.ts",
|
|
59
|
-
"design:bench:calibrate": "pnpm tsx bench/design/run-design-bench.ts --tier world-class --reproducibility",
|
|
60
54
|
"baseline:modes": "node ./scripts/run-mode-baseline.mjs",
|
|
61
55
|
"baseline:track": "node ./scripts/run-scenario-track.mjs",
|
|
62
|
-
"
|
|
63
|
-
"
|
|
56
|
+
"reliability:scorecard": "node ./scripts/reliability-scorecard.mjs",
|
|
57
|
+
"reliability:trend": "node ./scripts/reliability-trend.mjs",
|
|
58
|
+
"bench:scoreboard": "node ./scripts/benchmark-scoreboard.mjs",
|
|
59
|
+
"webbench:import": "node ./scripts/import-webbench-cases.mjs",
|
|
60
|
+
"design:bench": "pnpm tsx bench/design/run-design-bench.ts",
|
|
61
|
+
"design:bench:calibrate": "pnpm tsx bench/design/run-design-bench.ts --tier world-class --reproducibility",
|
|
64
62
|
"wallet:setup": "node ./bench/wallet/setup-extension.mjs",
|
|
65
63
|
"wallet:onboard": "node ./bench/wallet/setup-onboarding.mjs",
|
|
66
64
|
"wallet:configure": "node ./bench/wallet/configure-network.mjs",
|
|
65
|
+
"wallet:anvil": "node ./bench/wallet/setup-anvil.mjs",
|
|
66
|
+
"wallet:anvil:stop": "node ./bench/wallet/setup-anvil.mjs --stop",
|
|
67
67
|
"wallet:proxy": "node ./bench/wallet/rpc-proxy.mjs",
|
|
68
68
|
"wallet:proxy:stop": "node ./bench/wallet/rpc-proxy.mjs --stop",
|
|
69
69
|
"wallet:validate": "node ./bench/wallet/run-wallet-validation.mjs",
|