-
Notifications
You must be signed in to change notification settings - Fork 37
Expand file tree
/
Copy pathpackage.json
More file actions
145 lines (145 loc) · 5.99 KB
/
Copy pathpackage.json
File metadata and controls
145 lines (145 loc) · 5.99 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
{
"name": "openchrome-mcp",
"version": "1.12.8",
"description": "Open-source browser automation MCP server. Control your real Chrome from any AI agent.",
"main": "dist/index.js",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.js"
},
"./server": {
"import": "./dist/core/server.js",
"require": "./dist/core/server.js"
},
"./lifecycle": {
"import": "./dist/core/lifecycle/index.js",
"require": "./dist/core/lifecycle/index.js"
}
},
"bin": {
"openchrome": "./dist/cli/index.js",
"oc": "./dist/cli/index.js"
},
"scripts": {
"build": "tsc -p tsconfig.cli.json && tsc -p tsconfig.json",
"build:cli": "tsc -p tsconfig.cli.json",
"build:src": "tsc -p tsconfig.json",
"dev": "tsc -p tsconfig.cli.json --watch",
"start": "node dist/cli/index.js serve",
"check": "node dist/cli/index.js check",
"benchmark": "ts-node tests/benchmark/run.ts",
"benchmark:ci": "ts-node tests/benchmark/run.ts --ci",
"bench:webvoyager:mock": "ts-node tests/benchmark/webvoyager/runner.ts --adapter mock",
"bench:webvoyager:real": "ts-node tests/benchmark/webvoyager/runner.ts --adapter claude",
"bench:om2w:mock": "ts-node tests/benchmark/datasets/online-mind2web/cli.ts --adapter mock",
"bench:om2w": "ts-node tests/benchmark/datasets/online-mind2web/cli.ts --adapter claude",
"bench:latency": "ts-node tests/benchmark/run-latency.ts",
"bench:tokens": "ts-node tests/benchmark/run-token-efficiency.ts",
"bench:throughput": "ts-node tests/benchmark/run-throughput.ts --library all --include-live-competitors=false --session-mode both",
"bench:longrun": "ts-node tests/benchmark/run-longrun.ts",
"bench:reliability": "ts-node tests/benchmark/run-reliability.ts",
"bench:auth": "ts-node tests/benchmark/run-auth.ts --local-smoke",
"bench:dx": "ts-node tests/benchmark/run-dx.ts",
"test": "jest",
"test:e2e": "node --expose-gc node_modules/.bin/jest --config tests/e2e/jest.e2e.config.js",
"test:coverage": "jest --coverage",
"lint": "eslint src --ext .ts",
"lint:tier": "depcruise --config .dependency-cruiser.cjs src",
"lint:tool-schemas": "node dist/index.js serve --introspect-tools-list | node scripts/lint-tool-schemas.mjs -",
"clean": "rimraf dist",
"prepare": "npm run build",
"lint:changed": "node scripts/lint-changed-src.js",
"benchmark:perception": "ts-node tests/benchmark/run-perception.ts",
"harness:parallel-smoke": "ts-node tests/harness/parallel-smoke.ts",
"harness:certify": "ts-node tests/harness/certification/run-certification.ts",
"harness:evaluate-candidates": "ts-node tests/harness/candidates/evaluator.ts",
"bench:episode": "ts-node tests/benchmark/episode-harness/cli.ts",
"bench:episode:mock": "ts-node tests/benchmark/episode-harness/cli.ts --adapter mock",
"bench:visual-grounding": "node scripts/bench/visual-grounding/run.mjs",
"docs:capability-map": "ts-node scripts/gen-capability-map.ts",
"docs:capability-map:check": "ts-node scripts/gen-capability-map.ts --check",
"bench:episode:tokens": "ts-node tests/benchmark/run-episode-token-cost.ts",
"bench:realworld": "ts-node tests/benchmark/run-realworld-task-completion.ts && node benchmark/generate-realworld-task-completion-section.mjs",
"bench:realworld:stress": "ts-node tests/benchmark/run-realworld-task-completion.ts --stress && node benchmark/generate-realworld-task-completion-section.mjs",
"bench:realworld:headline": "ts-node tests/benchmark/run-realworld-task-completion.ts --recording-dir=benchmark/recordings/realworld && node benchmark/generate-realworld-task-completion-section.mjs --require-headline",
"bench:agent-success": "ts-node tests/benchmark/episode-harness/cli.ts",
"bench:agent-success:mock": "ts-node tests/benchmark/episode-harness/cli.ts --adapter mock",
"bench:readiness": "ts-node tests/benchmark/benchmark-readiness.ts",
"bench:competitor-smoke": "ts-node tests/benchmark/run-competitor-smoke.ts",
"bench:runtime-preflight": "ts-node tests/benchmark/runtime-preflight.ts",
"bench:full:live": "ts-node tests/benchmark/run-full-benchmark.ts --mode live",
"bench:full:recorded": "ts-node tests/benchmark/run-full-benchmark.ts --mode recorded",
"bench:api-key-readiness": "ts-node tests/benchmark/benchmark-readiness.ts --api-key-only"
},
"keywords": [
"openchrome",
"mcp",
"mcp-server",
"browser-automation",
"parallel-sessions",
"cdp",
"chrome",
"chrome-devtools-protocol",
"ai-agent",
"puppeteer"
],
"author": "shaun0927",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/shaun0927/openchrome.git"
},
"bugs": {
"url": "https://github.com/shaun0927/openchrome/issues"
},
"homepage": "https://github.com/shaun0927/openchrome#readme",
"devDependencies": {
"@playwright/mcp": "^0.0.75",
"@types/chrome": "^0.1.36",
"@types/jest": "^29.5.0",
"@types/node": "^20.0.0",
"@types/proper-lockfile": "^4.1.4",
"@types/turndown": "^5.0.6",
"@types/uuid": "^9.0.8",
"@types/write-file-atomic": "^4.0.3",
"@typescript-eslint/eslint-plugin": "^7.0.0",
"@typescript-eslint/parser": "^7.0.0",
"crawlee": "^3.16.0",
"dependency-cruiser": "^16.0.0",
"eslint": "^8.57.0",
"jest": "^29.7.0",
"js-tiktoken": "^1.0.21",
"playwright": "^1.49.0",
"rimraf": "^5.0.0",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.2",
"typescript": "^5.4.0"
},
"dependencies": {
"argon2": "^0.43.0",
"cheerio": "1.0.0-rc.12",
"commander": "^12.0.0",
"jose": "^5.10.0",
"proper-lockfile": "^4.1.2",
"puppeteer-core": "npm:rebrowser-puppeteer-core@23.10.3",
"turndown": "^7.2.4",
"uuid": "^9.0.0",
"write-file-atomic": "^5.0.1",
"yaml": "^2.9.0"
},
"overrides": {
"basic-ftp": "^5.3.1",
"ip-address": "^10.1.1"
},
"engines": {
"node": ">=18.17.0"
},
"files": [
"dist",
"assets",
"config",
"README.md",
"LICENSE"
]
}