-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
190 lines (190 loc) · 5.17 KB
/
Copy pathpackage.json
File metadata and controls
190 lines (190 loc) · 5.17 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
{
"name": "pixel-minion",
"displayName": "Pixel Minion: AI Image & SVG Generator Toolkit",
"description": "AI-powered image and SVG generation inside VSCode. Generate images and vector graphics directly in your editor using Gemini ( Nano Banana ), GPT-5, Claude, and FLUX models via OpenRouter.",
"version": "1.3.0",
"license": "SEE LICENSE IN LICENSE",
"publisher": "OkeyLanders",
"author": {
"name": "Okey Landers"
},
"repository": {
"type": "git",
"url": "https://github.com/okeylanders/pixel-minion-vscode.git"
},
"bugs": {
"url": "https://github.com/okeylanders/pixel-minion-vscode/issues"
},
"homepage": "https://github.com/okeylanders/pixel-minion-vscode#readme",
"icon": "assets/pixel-minion-icon.png",
"galleryBanner": {
"color": "#1a1a1a",
"theme": "dark"
},
"engines": {
"vscode": "^1.93.0"
},
"categories": [
"Machine Learning",
"Visualization",
"Other"
],
"keywords": [
"ai",
"image generation",
"image generator",
"svg generator",
"vector graphics",
"text-to-image",
"image-to-image",
"generative ai",
"openrouter",
"open router",
"nano banana",
"gemini",
"gemini flash",
"gemini pro",
"gemini image",
"gpt",
"gpt-5",
"gpt image",
"chatgpt",
"claude",
"flux",
"flux pro",
"flux 2",
"openai",
"anthropic"
],
"preview": true,
"activationEvents": [
"onView:pixelMinion.mainView",
"onCommand:pixelMinion.openSettings",
"onCommand:pixelMinion.showOutput",
"onCommand:pixelMinion.helloWorld"
],
"main": "./dist/extension.js",
"contributes": {
"viewsContainers": {
"activitybar": [
{
"id": "pixel-minion",
"title": "Pixel Minion",
"icon": "assets/icon.svg"
}
]
},
"views": {
"pixel-minion": [
{
"type": "webview",
"id": "pixelMinion.mainView",
"name": "AI Imaging Tools"
}
]
},
"commands": [
{
"command": "pixelMinion.openSettings",
"title": "Pixel Minion: Settings",
"icon": "$(gear)"
},
{
"command": "pixelMinion.showOutput",
"title": "Pixel Minion: Show Debug Output",
"icon": "$(bug)"
},
{
"command": "pixelMinion.helloWorld",
"title": "Pixel Minion: Hello World",
"icon": "$(comment-discussion)"
}
],
"menus": {
"view/title": [
{
"command": "pixelMinion.showOutput",
"when": "view == pixelMinion.mainView",
"group": "navigation@1"
},
{
"command": "pixelMinion.openSettings",
"when": "view == pixelMinion.mainView",
"group": "navigation@2"
}
]
},
"configuration": {
"title": "Pixel Minion",
"properties": {
"pixelMinion.maxConversationTurns": {
"type": "number",
"default": 10,
"description": "Maximum number of conversation turns to maintain in context"
},
"pixelMinion.openRouterModel": {
"type": "string",
"default": "openai/gpt-5.1",
"description": "OpenRouter model ID to use for AI features"
},
"pixelMinion.outputDirectory": {
"type": "string",
"default": "pixel-minion",
"description": "Directory (relative to workspace root) where generated images and SVGs are saved"
},
"pixelMinion.imageModel": {
"type": "string",
"default": "google/gemini-3.1-flash-image-preview",
"description": "Selected model for image generation (recommended: Nano Banana 2)"
},
"pixelMinion.svgModel": {
"type": "string",
"default": "recraft/recraft-v4.1-pro-vector",
"description": "Selected model for SVG generation (recommended: Claude Opus 4.7 for quality; Recraft V4.1 Pro Vector is the default for native vector output)"
}
}
}
},
"scripts": {
"vscode:prepublish": "npm run build",
"build": "webpack --mode production",
"watch": "webpack --mode development --watch",
"package": "vsce package",
"lint": "eslint src --ext ts,tsx",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage"
},
"devDependencies": {
"@testing-library/react": "^14.0.0",
"@types/jest": "^29.0.0",
"@types/node": "^20.0.0",
"@types/react": "^18.2.0",
"@types/react-dom": "^18.2.0",
"@types/vscode": "^1.85.0",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"@vscode/test-electron": "^2.3.0",
"@vscode/vsce": "^2.22.0",
"autoprefixer": "^10.4.0",
"css-loader": "^6.0.0",
"eslint": "^8.0.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"postcss": "^8.4.0",
"postcss-loader": "^8.0.0",
"prettier": "^3.0.0",
"style-loader": "^3.0.0",
"tailwindcss": "^3.0.0",
"ts-jest": "^29.1.0",
"ts-loader": "^9.5.0",
"typescript": "^5.3.0",
"webpack": "^5.89.0",
"webpack-cli": "^5.1.0"
},
"dependencies": {
"marked": "^12.0.0",
"react": "^18.2.0",
"react-dom": "^18.2.0"
}
}