-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
306 lines (306 loc) · 11.5 KB
/
package.json
File metadata and controls
306 lines (306 loc) · 11.5 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
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
{
"name": "auto-import",
"displayName": "Auto Import Relative Path",
"description": "Streamline your imports with instant relative path generation. Copy or auto-import files for JavaScript, TypeScript, CSS, HTML, and Markdown in a single command—no more manual path typing or memorizing!",
"publisher": "ElecTreeFrying",
"version": "0.6.1",
"author": {
"name": "John James Ermitaño",
"email": "jjgermitano@gmail.com"
},
"icon": "assets/extension-icon.png",
"engines": {
"vscode": "^1.98.0"
},
"homepage": "https://github.com/ElecTreeFrying/auto-import-relative-path",
"repository": {
"type": "git",
"url": "https://github.com/ElecTreeFrying/auto-import-relative-path.git"
},
"bugs": {
"email": "octobergroup721@gmail.com",
"url": "https://github.com/ElecTreeFrying/auto-import-relative-path/issues"
},
"pricing": "Free",
"badges": [
{
"url": "https://vsmarketplacebadge.apphb.com/version-short/Electreefrying.auto-import.png",
"description": "Version badge",
"href": "https://marketplace.visualstudio.com/items?itemName=ElecTreeFrying.auto-import"
},
{
"url": "https://vsmarketplacebadges.dev/downloads-short/ElecTreeFrying.auto-import.png",
"description": "Downloads badge",
"href": "https://marketplace.visualstudio.com/items?itemName=ElecTreeFrying.auto-import"
},
{
"url": "https://vsmarketplacebadges.dev/installs-short/ElecTreeFrying.auto-import.png",
"description": "Installs badge",
"href": "https://marketplace.visualstudio.com/items?itemName=ElecTreeFrying.auto-import"
},
{
"url": "https://vsmarketplacebadges.dev/rating-short/ElecTreeFrying.auto-import.png",
"description": "Rating badge",
"href": "https://marketplace.visualstudio.com/items?itemName=ElecTreeFrying.auto-import"
}
],
"extensionPack": [
"ElecTreeFrying.drag-import-relative-path"
],
"galleryBanner": {
"color": "#494949",
"theme": "dark"
},
"license": "MIT",
"categories": [
"Programming Languages",
"Snippets",
"Other"
],
"keywords": [
"vscode",
"visual studio code",
"auto import relative",
"auto import relative path",
"relative import",
"auto import",
"relative path",
"import helper",
"import statement",
"auto import extension",
"import automation",
"code productivity",
"file import",
"drag",
"import",
"path",
"relative",
"angular",
"react",
"vue",
"javascript",
"typescript",
"css",
"scss",
"html",
"markdown",
"code snippet"
],
"main": "./dist/extension.js",
"contributes": {
"commands": [
{
"command": "extension.pasteImport",
"title": "Auto Import: Paste"
},
{
"command": "extension.copyFilePath",
"title": "Auto Import: Copy"
},
{
"command": "extension.copyPaste",
"title": "Auto Import: Auto"
}
],
"keybindings": [
{
"command": "extension.pasteImport",
"key": "ctrl+i",
"mac": "cmd+i",
"when": "editorTextFocus"
},
{
"command": "extension.copyFilePath",
"key": "ctrl+shift+a",
"mac": "cmd+shift+a",
"when": "editorTextFocus || filesExplorerFocus"
},
{
"command": "extension.copyPaste",
"key": "alt+d",
"mac": "alt+d",
"when": "filesExplorerFocus"
}
],
"configuration": [
{
"title": "Auto Import Relative Path",
"properties": {
"auto-import.preferences.importStatementPlacement": {
"title": "Import statement placement",
"description": "Choose where new import statements are placed in your code: 'Top' inserts at the start of your imports, 'Bottom' appends at the end, and 'Cursor' places it at the current cursor location.",
"type": "string",
"default": "Bottom",
"enum": [
"Top",
"Bottom",
"Cursor"
],
"enumDescriptions": [
"Insert at the start of the existing import list.",
"Append at the end of the existing import list.",
"Insert at the current cursor location."
]
},
"auto-import.importStatement.script.preserveScriptFileExtension": {
"title": "Preserve script file extension",
"description": "When enabled, retains the .js or .ts file extension in import paths.",
"type": "boolean",
"default": false
},
"auto-import.importStatement.script.javascriptImportStyle": {
"title": "JavaScript (JS/JSX) import style",
"description": "Select a default import style for JavaScript or JSX files. Use '_relativePath_' to represent the path and 'name' for the import variable.",
"type": "string",
"default": "import name from '_relativePath_';",
"enum": [
"import name from '_relativePath_';",
"import { name } from '_relativePath_';",
"import { default as name } from '_relativePath_';",
"import * as name from '_relativePath_';",
"import '_relativePath_';",
"var name = require('_relativePath_');",
"const name = require('_relativePath_');",
"var name = import('_relativePath_');",
"const name = import('_relativePath_');"
]
},
"auto-import.importStatement.script.typescriptImportStyle": {
"title": "TypeScript (TS/TSX) import style",
"description": "Select a default import style for TypeScript or TSX files. Use '_relativePath_' to represent the path and 'name' for the import variable.",
"type": "string",
"default": "import { name } from '_relativePath_';",
"enum": [
"import name from '_relativePath_';",
"import { name } from '_relativePath_';",
"import { default as name } from '_relativePath_';",
"import * as name from '_relativePath_';",
"import '_relativePath_';"
]
},
"auto-import.importStatement.styleSheet.preserveStylesheetFileExtension": {
"title": "Preserve stylesheet file extension",
"description": "When enabled, retains the .css or .scss file extension in import paths.",
"type": "boolean",
"default": false
},
"auto-import.importStatement.styleSheet.cssImportStyle": {
"title": "CSS import style",
"description": "Choose how CSS files are imported (e.g., '@import' or '@import url').",
"type": "string",
"default": "@import '_relativePath_';",
"enum": [
"@import '_relativePath_';",
"@import url('_relativePath_');"
]
},
"auto-import.importStatement.styleSheet.cssImageImportStyle": {
"title": "CSS image import style",
"description": "Choose how images are referenced in CSS (e.g., 'url(...)').",
"type": "string",
"default": "url('_relativePath_')",
"enum": [
"url('_relativePath_')"
]
},
"auto-import.importStatement.styleSheet.scssImportStyle": {
"title": "SCSS import style",
"description": "Choose how SCSS files are imported (e.g., '@import', '@use').",
"type": "string",
"default": "@import '_relativePath_';",
"enum": [
"@import '_relativePath_';",
"@import url('_relativePath_');",
"@use '_relativePath_';",
"@use '_relativePath_' as *;"
]
},
"auto-import.importStatement.styleSheet.scssImageImportStyle": {
"title": "SCSS image import style",
"description": "Choose how images are referenced in SCSS (e.g., 'url(...)').",
"type": "string",
"default": "url('_relativePath_')",
"enum": [
"url('_relativePath_')"
]
},
"auto-import.importStatement.markup.htmlScriptImportStyle": {
"title": "HTML script import style",
"description": "Defines how JavaScript files are referenced in HTML. Use '_relativePath_' as the placeholder for the file path.",
"type": "string",
"default": "<script type=\"text/javascript\" src=\"_relativePath_\"></script>",
"enum": [
"<script type=\"text/javascript\" src=\"_relativePath_\"></script>"
]
},
"auto-import.importStatement.markup.htmlImageImportStyle": {
"title": "HTML image import style",
"description": "Defines how images are referenced in HTML. Use '_relativePath_' as the placeholder for the file path.",
"type": "string",
"default": "<img src=\"_relativePath_\" alt=\"sample\">",
"enum": [
"<img src=\"_relativePath_\" alt=\"sample\">"
]
},
"auto-import.importStatement.markup.htmlStyleSheetImportStyle": {
"title": "HTML stylesheet import style",
"description": "Defines how stylesheets are referenced in HTML. Use '_relativePath_' as the placeholder for the file path.",
"type": "string",
"default": "<link href=\"_relativePath_\" rel=\"stylesheet\">",
"enum": [
"<link href=\"_relativePath_\" rel=\"stylesheet\">"
]
},
"auto-import.importStatement.markup.markdownImportStyle": {
"title": "Markdown import style",
"description": "Defines how Markdown files are referenced in other Markdown files. Use '_relativePath_' as the placeholder for the file path.",
"type": "string",
"default": "",
"enum": [
""
]
},
"auto-import.importStatement.markup.markdownImageImportStyle": {
"title": "Markdown image import style",
"description": "Defines how images are referenced in Markdown (inline or reference-style). Use '_relativePath_' as the placeholder for the file path.",
"type": "string",
"default": "",
"enum": [
"",
"![alt-text][image] / [image]: _relativePath_ \"Hover text\""
]
}
}
}
]
},
"scripts": {
"vscode:prepublish": "npm run package",
"compile": "webpack",
"watch": "webpack --watch",
"package": "webpack --mode production --devtool hidden-source-map",
"compile-tests": "tsc -p . --outDir out",
"watch-tests": "tsc -p . -w --outDir out",
"pretest": "npm run compile-tests && npm run compile && npm run lint",
"lint": "eslint src",
"test": "vscode-test"
},
"devDependencies": {
"@types/vscode": "^1.98.0",
"@types/mocha": "^10.0.10",
"@types/node": "20.x",
"@typescript-eslint/eslint-plugin": "^8.25.0",
"@typescript-eslint/parser": "^8.25.0",
"chai": "^5.2.0",
"eslint": "^9.21.0",
"mocha": "^11.1.0",
"sinon": "^19.0.2",
"typescript": "^5.7.3",
"ts-loader": "^9.5.2",
"vscode-test": "^1.6.1",
"webpack": "^5.98.0",
"webpack-cli": "^6.0.1",
"@vscode/test-cli": "^0.0.10",
"@vscode/test-electron": "^2.4.1"
}
}