-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
211 lines (211 loc) · 5.62 KB
/
Copy pathpackage.json
File metadata and controls
211 lines (211 loc) · 5.62 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
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
{
"name": "cloudinary",
"publisher": "Cloudinary",
"displayName": "Cloudinary",
"description": "Easily find and manage your Cloudinary assets directly from Visual Studio Code.",
"version": "1.0.1",
"icon": "resources/cloudinary_icon_blue.png",
"repository": {
"type": "git",
"url": "https://github.com/cloudinary-devs/cloudinary-vscode.git"
},
"bugs": {
"url": "https://github.com/cloudinary-devs/cloudinary-vscode/issues"
},
"homepage": "https://github.com/cloudinary-devs/cloudinary-vscode#readme",
"engines": {
"vscode": "^1.96.0"
},
"categories": [
"Other",
"Visualization"
],
"galleryBanner": {
"color": "#3448C5",
"theme": "dark"
},
"keywords": [
"cloudinary",
"media",
"assets",
"images",
"videos",
"upload",
"cloud",
"cdn"
],
"license": "MIT",
"activationEvents": [],
"main": "./dist/extension.js",
"contributes": {
"viewsContainers": {
"activitybar": [
{
"id": "cloudinary",
"title": "Cloudinary",
"icon": "resources/cloudinary_icon_blue.png"
}
]
},
"views": {
"cloudinary": [
{
"id": "cloudinaryHomescreen",
"name": "Cloudinary",
"type": "webview",
"when": "cloudinary.activeView != 'library' && cloudinary.activeView != 'docsAi'"
},
{
"id": "cloudinaryMediaLibrary",
"name": "Library",
"type": "webview",
"contextualTitle": "Cloudinary Library",
"when": "cloudinary.activeView == 'library'"
},
{
"id": "cloudinaryDocsAI",
"name": "Docs AI",
"type": "webview",
"contextualTitle": "Cloudinary Docs AI",
"when": "cloudinary.activeView == 'docsAi'"
}
]
},
"configuration": {
"title": "Cloudinary",
"properties": {
"cloudinary.docsAi.apiBase": {
"type": "string",
"default": "https://cld-docs-ai-delta.vercel.app",
"scope": "machine-overridable",
"markdownDescription": "Base URL for the Cloudinary Docs AI backend. Override this for local development, for example `http://127.0.0.1:5173`."
}
}
},
"commands": [
{
"command": "cloudinary.openAsset",
"title": "Open Asset"
},
{
"command": "cloudinary.copyUrl",
"title": "Copy Asset URL"
},
{
"command": "cloudinary.copyPublicId",
"title": "Copy Asset Public ID"
},
{
"command": "cloudinary.copyOptimizedUrl",
"title": "Copy Optimized URL"
},
{
"command": "cloudinary.uploadToFolder",
"title": "Upload here",
"category": "Cloudinary"
},
{
"command": "cloudinary.refresh",
"title": " Refresh"
},
{
"command": "cloudinary.viewOptions",
"title": "View Options",
"icon": "$(filter)",
"category": "Cloudinary"
},
{
"command": "cloudinary.searchAssets",
"title": " Search",
"category": "Cloudinary"
},
{
"command": "cloudinary.openUploadWidget",
"title": " Upload",
"category": "Cloudinary"
},
{
"command": "cloudinary.switchEnvironment",
"title": "Switch Product Environment",
"category": "Cloudinary"
},
{
"command": "cloudinary.openGlobalConfig",
"title": "Config",
"icon": "$(gear)",
"category": "Cloudinary"
},
{
"command": "cloudinary.openWelcomeScreen",
"title": "Open Welcome Guide",
"category": "Cloudinary"
},
{
"command": "cloudinary.showHomescreen",
"title": "Go to Home",
"icon": "$(home)",
"category": "Cloudinary"
},
{
"command": "cloudinary.showLibrary",
"title": "Browse Media Library",
"category": "Cloudinary"
},
{
"command": "cloudinary.showDocsAI",
"title": "Open Docs AI",
"category": "Cloudinary"
},
{
"command": "cloudinary.configureAiTools",
"title": "Configure AI Tools",
"category": "Cloudinary"
},
{
"command": "cloudinary.docsAi.refresh",
"title": "Refresh Docs AI",
"icon": "$(refresh)",
"category": "Cloudinary"
},
{
"command": "cloudinary.refreshFolderMode",
"title": "Refresh Folder Mode",
"icon": "$(refresh)",
"category": "Cloudinary"
}
]
},
"scripts": {
"compile": "npm run check-types && node esbuild.js",
"check-types": "tsc --noEmit",
"watch": "npm-run-all -p watch:*",
"watch:esbuild": "node esbuild.js --watch",
"watch:tsc": "tsc --noEmit --watch --project tsconfig.json",
"vscode:prepublish": "npm run check-types && node esbuild.js --production",
"package": "vsce package",
"publish": "vsce publish",
"pretest": "npm run compile-tests && npm run lint",
"compile-tests": "tsc -p . --outDir out",
"lint": "eslint src --ext ts",
"test": "node ./out/test/runTest.js"
},
"devDependencies": {
"@types/mocha": "^10.0.3",
"@types/node": "18.x",
"@types/vscode": "^1.96.0",
"@typescript-eslint/eslint-plugin": "^8.39.1",
"@typescript-eslint/parser": "^8.39.1",
"@vscode/test-electron": "^2.3.6",
"esbuild": "^0.25.9",
"eslint": "^8.52.0",
"glob": "^10.3.10",
"highlight.js": "^11.11.1",
"marked": "^17.0.3",
"mocha": "^10.2.0",
"npm-run-all": "^4.1.5",
"typescript": "^5.2.2"
},
"dependencies": {
"cloudinary": "^2.5.1"
}
}