-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.1 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.1 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
{
"name": "@monteslu/vibe-eyes",
"version": "1.0.2",
"description": "MCP server that provides LLMs with vectorized canvas output and debug information for vibe coding",
"main": "vectorizer.js",
"type": "module",
"bin": {
"vibe-eyes": "./mcp.js",
"vibe-eyes-vectorize": "./cli.js"
},
"scripts": {
"start": "node cli.js",
"server": "node mcp.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"svg",
"vector",
"raster",
"image",
"conversion",
"high-quality",
"library",
"cli"
],
"repository": {
"type": "git",
"url": "git://github.com/monteslu/vibe-eyes.git"
},
"author": "",
"license": "ISC",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.10.1",
"@neplex/vectorizer": "^0.0.5",
"commander": "^13.1.0",
"express": "^4.18.3",
"socket.io": "^4.7.4",
"svgo": "^3.3.2",
"zod": "^3.22.4"
},
"exports": {
".": "./vectorizer.js"
},
"files": [
"vectorizer.js",
"cli.js",
"mcp.js",
"README.md",
"LICENSE"
],
"engines": {
"node": ">=16.0.0"
}
}