-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.27 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.27 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
{
"name": "draw2agent",
"version": "2.0.5",
"mcpName": "io.github.zero-abd/draw2agent",
"description": "Draw on your website, let your AI agent see it. Visual context for code generation via MCP.",
"type": "module",
"main": "dist/index.js",
"bin": {
"draw2agent": "./bin/draw2agent.js"
},
"author": "zero-abd",
"repository": {
"type": "git",
"url": "https://github.com/zero-abd/draw2agent.git"
},
"scripts": {
"build:server": "tsup",
"build:overlay": "cd overlay && npm run build",
"build": "npm run build:server && npm run build:overlay",
"dev": "tsup --watch",
"prepublishOnly": "npm run build"
},
"keywords": [
"mcp",
"draw",
"ai",
"agent",
"code-generation",
"excalidraw",
"visual"
],
"license": "MIT",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.0.0",
"http-proxy": "^1.18.1",
"localtunnel": "^2.0.2",
"open": "^10.1.0",
"qrcode": "^1.5.4"
},
"devDependencies": {
"@types/http-proxy": "^1.17.14",
"@types/localtunnel": "^2.0.4",
"@types/node": "^22.0.0",
"@types/qrcode": "^1.5.6",
"tsup": "^8.0.0",
"typescript": "^5.5.0"
},
"overrides": {
"axios": "1.7.9"
},
"files": [
"dist",
"overlay/dist",
"bin",
"prompts"
]
}