-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.39 KB
/
Copy pathpackage.json
File metadata and controls
51 lines (51 loc) · 1.39 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
{
"name": "opencode-vision-plugin",
"version": "1.0.7",
"description": "Visual vision tools (describe, OCR, analyze) for opencode as an in-process plugin. Direct fetch to Gemini + NVIDIA NIM with provider-chain fallback, dual-describe, and nested-object config. No MCP server, no subprocess, no pip.",
"main": "opencode-vision-plugin.js",
"types": "index.d.ts",
"type": "commonjs",
"repository": {
"type": "git",
"url": "git+https://github.com/AshutoshGitMirror/opencode-vision-plugin.git"
},
"homepage": "https://github.com/AshutoshGitMirror/opencode-vision-plugin",
"bugs": {
"url": "https://github.com/AshutoshGitMirror/opencode-vision-plugin/issues"
},
"author": "Ashutosh Sononey <AshutoshGitMirror@users.noreply.github.com>",
"exports": {
".": {
"types": "./index.d.ts",
"require": "./opencode-vision-plugin.js"
}
},
"files": [
"opencode-vision-plugin.js",
"index.d.ts",
"README.md",
"LICENSE"
],
"keywords": [
"opencode",
"plugin",
"vision",
"ocr",
"image",
"gemini",
"nvidia",
"nim",
"vision-language-model",
"vlm"
],
"license": "MIT",
"engines": {
"node": ">=18"
},
"scripts": {
"build": "esbuild vision.ts --bundle --platform=node --format=cjs --external:@opencode-ai/plugin --outfile=opencode-vision-plugin.js"
},
"devDependencies": {
"esbuild": "^0.24.0"
}
}