mirror of
https://github.com/anomalyco/opencode.git
synced 2026-09-08 19:24:35 +00:00
40 lines
991 B
JSON
40 lines
991 B
JSON
{
|
|
"$schema": "https://json.schemastore.org/package.json",
|
|
"name": "@opencode-ai/plugin-browser",
|
|
"version": "0.0.0",
|
|
"description": "OpenCode's desktop browser plugin",
|
|
"type": "module",
|
|
"license": "MIT",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/anomalyco/opencode.git",
|
|
"directory": "packages/plugin-browser"
|
|
},
|
|
"publishConfig": {
|
|
"access": "public"
|
|
},
|
|
"files": [
|
|
"dist"
|
|
],
|
|
"exports": {
|
|
".": "./src/index.ts",
|
|
"./rpc": "./src/rpc.ts",
|
|
"./proxy": "./src/proxy.ts"
|
|
},
|
|
"scripts": {
|
|
"build": "tsc -p tsconfig.build.json",
|
|
"typecheck": "tsgo --noEmit -p tsconfig.test.json",
|
|
"test": "bun test"
|
|
},
|
|
"dependencies": {
|
|
"@opencode-ai/plugin": "workspace:*",
|
|
"@opencode-ai/schema": "workspace:*",
|
|
"effect": "catalog:"
|
|
},
|
|
"devDependencies": {
|
|
"@tsconfig/bun": "catalog:",
|
|
"@types/bun": "catalog:",
|
|
"@typescript/native-preview": "catalog:",
|
|
"typescript": "catalog:"
|
|
}
|
|
}
|