-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
172 lines (172 loc) · 3.94 KB
/
package.json
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
{
"$schema": "https://www.raycast.com/schemas/extension.json",
"name": "stablecog",
"title": "Stablecog",
"description": "Create amazing art in seconds with AI. Generate and upscale images with Stablecog.",
"icon": "stablecog.png",
"owner": "stablecog",
"access": "public",
"author": "yektagg",
"categories": [
"Design Tools",
"Developer Tools",
"Productivity"
],
"license": "MIT",
"commands": [
{
"name": "imagine",
"title": "Imagine",
"subtitle": "Stablecog",
"description": "Create art with AI.",
"mode": "view",
"arguments": [
{
"name": "Prompt",
"placeholder": "Prompt",
"type": "text",
"required": true
}
]
},
{
"name": "imagine-advanced",
"title": "Imagine (Advanced)",
"subtitle": "Stablecog",
"description": "Create art with AI using advanced options.",
"mode": "view"
},
{
"name": "upscale",
"title": "Upscale",
"subtitle": "Stablecog",
"description": "Upscale images with AI.",
"mode": "view"
},
{
"name": "search-your-history",
"title": "Search Your History",
"subtitle": "Stablecog",
"description": "Search your history on Stablecog.",
"mode": "view"
},
{
"name": "search-gallery",
"title": "Search Gallery",
"subtitle": "Stablecog",
"description": "Search the Stablecog gallery.",
"mode": "view"
}
],
"preferences": [
{
"title": "Model",
"default": "FLUX.1",
"type": "dropdown",
"description": "The AI image model to use for creating images.",
"name": "model",
"required": false,
"data": [
{
"title": "FLUX.1",
"value": "FLUX.1"
},
{
"title": "Stable Diffusion 3",
"value": "Stable Diffusion 3"
},
{
"title": "Kandinsky 2.2",
"value": "Kandinsky 2.2"
},
{
"title": "SDXL",
"value": "SDXL"
}
]
},
{
"title": "Number of Outputs",
"default": "2",
"type": "dropdown",
"description": "The number of images to create.",
"name": "num_outputs",
"required": false,
"data": [
{
"title": "1",
"value": "1"
},
{
"title": "2",
"value": "2"
},
{
"title": "4",
"value": "4"
}
]
},
{
"title": "Aspect Ratio",
"default": "1:1",
"type": "dropdown",
"description": "The aspect ratio of the image to create.",
"name": "aspect_ratio",
"required": false,
"data": [
{
"title": "Square (1:1)",
"value": "1:1"
},
{
"title": "Portrait (2:3)",
"value": "2:3"
},
{
"title": "Landscape (3:2)",
"value": "3:2"
},
{
"title": "Mobile (9:16)",
"value": "9:16"
},
{
"title": "Desktop (16:9)",
"value": "16:9"
},
{
"title": "Squarish (4:5)",
"value": "4:5"
}
]
}
],
"dependencies": {
"@raycast/api": "^1.78.1",
"@raycast/utils": "^1.16.1",
"file-type": "^18.5.0",
"form-data-encoder": "^3.0.0",
"formdata-node": "^5.0.1",
"image-size": "^1.0.2",
"js-base64": "^3.7.5",
"node-fetch": "^3.3.2",
"run-applescript": "^6.1.0"
},
"devDependencies": {
"@raycast/eslint-config": "^1.0.6",
"@types/node": "20.8.10",
"@types/react": "18.2.27",
"eslint": "^8.51.0",
"prettier": "^3.0.3",
"typescript": "^5.2.2"
},
"scripts": {
"build": "ray build -e dist",
"dev": "ray develop",
"fix-lint": "ray lint --fix",
"lint": "ray lint",
"publish": "npx @raycast/api@latest publish",
"pull": "npx @raycast/api@latest pull-contributions"
}
}