-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 867 Bytes
/
package.json
File metadata and controls
40 lines (40 loc) · 867 Bytes
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
{
"name": "mcp-draw",
"type": "module",
"version": "0.0.3",
"main": "index.js",
"bin": {
"mcp-draw": "build/index.js"
},
"scripts": {
"build": "tsc && shx chmod +x build/*.js",
"watch": "tsc --watch",
"prepare": "npm run build",
"format": "prettier --write src/**/*.ts"
},
"files": [
"build"
],
"keywords": [
"image generation",
"modelcontextprotocol",
"mcp"
],
"author": "Kevin Dela Rosa",
"license": "None",
"description": "MCP server for generating images from a prompt",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.9.0",
"@types/uuid": "^10.0.0",
"dotenv": "^16.4.7",
"openai": "^4.96.0",
"shx": "^0.4.0",
"uuid": "^11.1.0",
"zod": "^3.24.2"
},
"devDependencies": {
"@types/node": "^22.14.1",
"prettier": "^3.5.3",
"typescript": "^5.8.3"
}
}