-
Notifications
You must be signed in to change notification settings - Fork 31
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.52 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.52 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
{
"name": "opencode-chrome-devtools",
"version": "1.0.0",
"description": "Browser automation plugin for OpenCode using direct Chrome DevTools Protocol connections.",
"type": "module",
"bin": {
"opencode-chrome-devtools": "bin/cli.js"
},
"main": "./dist/plugin.js",
"exports": {
".": "./dist/plugin.js",
"./plugin": "./dist/plugin.js"
},
"files": [
".opencode",
"bin",
"dist",
"README.md"
],
"scripts": {
"build": "bun build src/plugin.ts --target=node --outfile=dist/plugin.js",
"prepublishOnly": "bun run build",
"publish": "node -e \"if (process.env.npm_command === 'publish') process.exit(0); require('child_process').execSync('npm publish --access public', { stdio: 'inherit' });\"",
"status": "node bin/cli.js status",
"tools": "node bin/cli.js tools",
"self-test": "node bin/cli.js self-test",
"tool-test": "bun bin/tool-test.ts"
},
"keywords": [
"opencode",
"browser",
"automation",
"cdp",
"chrome",
"plugin",
"devtools"
],
"author": "Benjamin Shafii",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/different-ai/opencode-browser.git"
},
"bugs": {
"url": "https://github.com/different-ai/opencode-browser/issues"
},
"homepage": "https://github.com/different-ai/opencode-browser#readme",
"peerDependencies": {
"@opencode-ai/plugin": "*"
},
"dependencies": {
"ws": "^8.18.3"
},
"devDependencies": {
"@opencode-ai/plugin": "*",
"bun-types": "*"
}
}