-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 2.06 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 2.06 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
{
"name": "openrouter-imagegen-mcp",
"version": "1.0.0",
"description": "MCP server for Claude Code that enables AI image generation via OpenRouter API. Supports multiple models including OpenAI GPT-5 Image and Google Gemini 2.5 Flash Image.",
"main": "dist/index.js",
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/scotthooker/OpenRouter-ImageGen-MCP.git"
},
"bugs": {
"url": "https://github.com/scotthooker/OpenRouter-ImageGen-MCP/issues"
},
"homepage": "https://github.com/scotthooker/OpenRouter-ImageGen-MCP#readme",
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "tsc && node dist/index.js",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"lint": "eslint src --ext .ts",
"lint:fix": "eslint src --ext .ts --fix",
"format": "prettier --write \"src/**/*.ts\"",
"format:check": "prettier --check \"src/**/*.ts\"",
"typecheck": "tsc --noEmit",
"clean": "rm -rf dist coverage",
"config": "node scripts/generate-config.js",
"setup": "npm install && npm run build && npm run config",
"website:serve": "npx http-server website -p 8000 -o",
"website:validate": "echo 'Validating website structure...' && test -f website/index.html && test -f website/styles.css && test -f website/script.js && echo 'Website structure is valid!'"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.0.1",
"node-fetch": "^3.3.2"
},
"devDependencies": {
"@types/jest": "^29.5.11",
"@types/node": "^20.0.0",
"@typescript-eslint/eslint-plugin": "^6.18.1",
"@typescript-eslint/parser": "^6.18.1",
"eslint": "^8.56.0",
"jest": "^29.7.0",
"prettier": "^3.1.1",
"ts-jest": "^29.1.1",
"typescript": "^5.0.0"
},
"keywords": [
"mcp",
"model-context-protocol",
"claude-code",
"openrouter",
"image-generation",
"ai",
"gemini",
"gpt-5",
"claude",
"anthropic",
"cli"
],
"author": "Scott Hooker",
"license": "MIT",
"engines": {
"node": ">=18.0.0"
}
}