-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.13 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 2.13 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
{
"name": "copy-template-extension",
"displayName": "copy-template",
"description": "Shortcut to Copier in VS Code",
"version": "1.0.1",
"license": "GPL-3.0-or-later",
"repository": {
"type": "git",
"url": "https://github.com/andrey4ik21pro1/copy-template-extension.git"
},
"l10n": "./l10n",
"publisher": "Andrey4ik21pro1",
"engines": {
"vscode": "^1.74.0"
},
"categories": [
"Other"
],
"activationEvents": [],
"main": "./dist/extension.js",
"contributes": {
"commands": [
{
"command": "copy-template-extension.createProject",
"title": "%extension.copy-template.config.createProject%",
"category": "copy-template"
},
{
"command": "copy-template-extension.refreshTemplates",
"title": "%extension.copy-template.config.refreshTemplates%",
"category": "copy-template"
}
],
"configuration": {
"title": "copy-template",
"properties": {
"copy-template.defaultProjectsFolder": {
"type": "string",
"format": "uri-reference",
"description": "%extension.copy-template.config.defaultProjectsFolder%"
},
"copy-template.author": {
"type": "string",
"description": "%extension.copy-template.config.author%"
},
"copy-template.repo": {
"type": "string",
"description": "%extension.copy-template.config.repo%"
},
"copy-template.explorer.enabled": {
"type": "boolean",
"default": true,
"description": "%extension.copy-template.config.explorerEnabled%"
}
}
},
"viewsWelcome": [
{
"view": "explorer",
"contents": "%extension.copy-template.viewsWelcome.contents%",
"when": "workspaceFolderCount == 0 && config.copy-template.explorer.enabled"
}
]
},
"scripts": {
"vscode:prepublish": "npm run build",
"build": "npx esbuild ./src/extension.js --bundle --format=cjs --minify --platform=node --outfile=./dist/extension.js --external:vscode"
},
"devDependencies": {
"esbuild": "^0.27.3",
"@vscode/vsce": "^2.24.0"
}
}