-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
115 lines (115 loc) · 2.78 KB
/
Copy pathpackage.json
File metadata and controls
115 lines (115 loc) · 2.78 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
{
"name": "visionpower",
"version": "3.2.4",
"description": "VisionPower: a portable image understanding MCP server for Codex, Claude Desktop, Cursor, and other agents.",
"type": "module",
"bin": {
"visionpower": "src/index.js"
},
"exports": {
".": "./src/public-api.js",
"./core": "./src/vision-core.js",
"./config": "./src/config.js",
"./schema": "./src/schema.js",
"./dsh": "./src/dsh/index.js",
"./dsh/client": "./src/dsh/client.js",
"./dsh/package.json": "./src/dsh/package.json",
"./client": "./src/dsh/client.js",
"./src/*": "./src/*",
"./package.json": "./package.json"
},
"files": [
"src",
"VisionPower-Skill",
"scripts/patch-dsh.mjs",
"scripts/setup-dsh.mjs",
"docs/images",
"README.md",
"README.en.md",
"CHANGELOG.md",
"LICENSE"
],
"scripts": {
"start": "node src/index.js",
"build:skill": "node scripts/build-skill.mjs --write",
"build:dsh": "node scripts/build-dsh.mjs --write",
"dev:webui": "node src/index.js --webui",
"lint": "eslint .",
"smoke": "node scripts/smoke.mjs",
"test": "node scripts/test.mjs"
},
"keywords": [
"mcp",
"model-context-protocol",
"skill",
"agent-skill",
"dsh",
"deepseek-harness",
"cordis",
"vision",
"ocr",
"image-understanding",
"codex",
"claude"
],
"author": "Runhua",
"license": "MIT",
"engines": {
"node": ">=20.19.0"
},
"dsh": {
"client": {
"inject": [
"@deepseek-ai/dsh-client-runtime",
"@deepseek-ai/dsh-client-ui-settings",
"@deepseek-ai/dsh-client-ui-settings-plugins"
],
"platform": "web"
}
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.30.0",
"alpinejs": "^3.16.0",
"zod": "^4.0.0"
},
"peerDependencies": {
"@deepseek-ai/cordis": "^4.0.1",
"@deepseek-ai/dsh-llm": "^0.1.0-rc.7",
"@deepseek-ai/dsh-tools": "^0.1.0-rc.7",
"@deepseek-ai/schemastery": ">=3.18.1 <4",
"@deepseek-ai/dsh-client-runtime": "^0.1.0-rc.7",
"@deepseek-ai/dsh-client-ui-settings": "^0.1.0-rc.7",
"@deepseek-ai/dsh-client-ui-settings-plugins": "^0.1.0-rc.7",
"react": "^18.2.0"
},
"peerDependenciesMeta": {
"@deepseek-ai/cordis": {
"optional": true
},
"@deepseek-ai/dsh-llm": {
"optional": true
},
"@deepseek-ai/dsh-tools": {
"optional": true
},
"@deepseek-ai/schemastery": {
"optional": true
},
"@deepseek-ai/dsh-client-runtime": {
"optional": true
},
"@deepseek-ai/dsh-client-ui-settings": {
"optional": true
},
"@deepseek-ai/dsh-client-ui-settings-plugins": {
"optional": true
},
"react": {
"optional": true
}
},
"devDependencies": {
"eslint": "^10.8.1",
"globals": "^17.9.0"
}
}