-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 2.03 KB
/
Copy pathpackage.json
File metadata and controls
71 lines (71 loc) · 2.03 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
{
"name": "cereon-browser-operator",
"version": "2.1.0",
"private": true,
"description": "Open, self-hosted browser-control layer for AI agents: a Manifest V3 extension that drives your real, logged-in browser over CDP, exposed as one open protocol any backend or LLM can drive. MCP-native, model-agnostic, embeddable. TypeScript.",
"author": "Cereon Labs",
"license": "MIT",
"type": "module",
"homepage": "https://github.com/cereon-labs/cereon-browser-operator#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/cereon-labs/cereon-browser-operator.git"
},
"bugs": {
"url": "https://github.com/cereon-labs/cereon-browser-operator/issues"
},
"keywords": [
"browser-automation",
"chrome-extension",
"manifest-v3",
"mcp",
"model-context-protocol",
"ai-agent",
"cdp",
"chrome-devtools-protocol",
"llm",
"self-hosted",
"claude",
"rpa",
"typescript"
],
"engines": {
"node": ">=22"
},
"packageManager": "pnpm@10.28.2",
"pnpm": {
"onlyBuiltDependencies": [
"esbuild"
]
},
"scripts": {
"build": "node esbuild.config.mjs",
"build:zip": "node scripts/build-zip.mjs",
"watch": "node esbuild.config.mjs --watch",
"demo": "node scripts/demo.mjs",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"check": "pnpm run format:check && pnpm run lint && pnpm run typecheck && pnpm run test && pnpm run build"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/chrome": "^0.1.43",
"@vitest/coverage-v8": "^4.1.8",
"esbuild": "^0.28.0",
"eslint": "^10.4.1",
"eslint-config-prettier": "^10.1.8",
"globals": "^17.6.0",
"jsdom": "^29.1.1",
"prettier": "^3.8.3",
"typescript": "^6.0.3",
"typescript-eslint": "^8.60.1",
"vite": "^8.0.16",
"vitest": "^4.1.8"
}
}