-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.37 KB
/
Copy pathpackage.json
File metadata and controls
53 lines (53 loc) · 1.37 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
{
"name": "opencode-easy-vision",
"version": "1.6.1",
"description": "OpenCode plugin that restores the paste-and-ask workflow for text-only models by saving pasted images and injecting MCP tool instructions",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
"files": [
"dist",
"opencode-easy-vision.example.jsonc",
"AGENT_SETUP.md",
"CONFIGURATION.md"
],
"scripts": {
"clean": "node --eval \"require('node:fs').rmSync('dist', { recursive: true, force: true })\"",
"build": "npm run clean && tsc",
"format": "prettier --write src/**/*.ts",
"format:check": "prettier --check src/**/*.ts",
"prepublishOnly": "npm run build",
"prepare": "husky"
},
"keywords": [
"opencode",
"opencode-plugin",
"minimax",
"text-only-models",
"vision",
"mcp",
"image"
],
"author": "Devadathan M B <devadathanmb@gmail.com>",
"license": "AGPL-3.0",
"devDependencies": {
"@opencode-ai/plugin": "^1.2.26",
"@types/node": "^25.0.0",
"husky": "^9.1.7",
"prettier": "^3.8.1",
"typescript": "^5.7.0"
},
"peerDependencies": {
"@opencode-ai/plugin": ">=1.0.0"
},
"engines": {
"node": ">=18.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/devadathanmb/opencode-easy-vision.git"
},
"dependencies": {
"strip-json-comments": "^5.0.3"
}
}