forked from Garoth/dalle-mcp
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.47 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.47 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
{
"name": "gpt-image-mcp-server",
"version": "1.0.0",
"description": "MCP server for generating images using OpenAI's GPT-Image-1 API (fork of dalle-mcp-server)",
"private": true,
"type": "module",
"bin": {
"gpt-image-mcp-server": "./build/index.js"
},
"files": [
"build"
],
"repository": {
"type": "git",
"url": "https://github.com/Garoth/dalle-mcp.git"
},
"scripts": {
"build": "tsc && node -e \"require('fs').chmodSync('build/index.js', '755')\"",
"prepare": "npm run build",
"watch": "tsc --watch",
"inspector": "npx @modelcontextprotocol/inspector build/index.js",
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js src/services/__tests__/dalle-service.test.ts",
"test:watch": "node --experimental-vm-modules node_modules/jest/bin/jest.js --watch",
"test:name": "node --experimental-vm-modules node_modules/jest/bin/jest.js -t",
"test:all": "RUN_ALL_TESTS=true npm test",
"generate-test-image": "npm run build && node scripts/generate-test-image.js",
"add-to-mcp": "node add-to-mcp-settings.js",
"start": "node build/index.js"
},
"dependencies": {
"@modelcontextprotocol/sdk": "0.6.0",
"dotenv": "^16.4.7",
"axios": "^1.7.9",
"form-data": "^4.0.0",
"fs-extra": "^11.2.0"
},
"devDependencies": {
"@types/fs-extra": "^11.0.4",
"@types/jest": "^29.5.14",
"@types/node": "^20.11.24",
"jest": "^29.7.0",
"ts-jest": "^29.2.5",
"typescript": "^5.3.3"
}
}