-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
115 lines (115 loc) · 3.1 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
{
"name": "dockerfiletemplate",
"publisher": "QuentinGruber",
"displayName": "Docker File Template",
"description": "Quick Dockerfile for your project",
"icon": "assets/logo-dockerfiletemplate.png",
"version": "2.0.4",
"engines": {
"vscode": "^1.87.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onCommand:dockerfiletemplate.generatedockerfile",
"onView:dockerfiletemplate"
],
"main": "./out/extension.js",
"repository": {
"type": "git",
"url": "git+https://github.com/QuentinGruber/dockerfiletemplate.git"
},
"contributes": {
"menus": {
"view/item/context": [
{
"command": "dockerfiletemplate.useTemplate",
"when": "view == dockerfiletemplate && viewItem == templateWignore || viewItem == template"
},
{
"command": "dockerfiletemplate.useTemplateWDockerIgnore",
"when": "view == dockerfiletemplate && viewItem == templateWignore"
},
{
"command": "dockerfiletemplate.previewTemplate",
"when": "view == dockerfiletemplate && viewItem == templateWignore || viewItem == template"
}
]
},
"commands": [
{
"command": "dockerfiletemplate.generatedockerfile",
"title": "Generate Docker file"
},
{
"command": "dockerfiletemplate.useTemplate",
"title": "Use template",
"icon": "$(zap)"
},
{
"command": "dockerfiletemplate.useTemplateWDockerIgnore",
"title": "Use template W/ .dockerignore"
},
{
"command": "dockerfiletemplate.previewTemplate",
"title": "Preview dockerfile"
}
],
"viewsContainers": {
"activitybar": [
{
"id": "dockerfiletemplate",
"title": "dft",
"icon": "assets/dockerfiletemplate_activitybar_icon.svg"
}
]
},
"views": {
"dockerfiletemplate": [
{
"id": "dockerfiletemplate",
"name": "templates"
}
]
},
"configuration": {
"type": "object",
"title": "dockerfiletemplate",
"properties": {
"dockerfiletemplate.alwaysAddIgnoreFiles": {
"type": [
"boolean"
],
"default": null,
"description": "Will always add the associated .dockerignore file to a template if available."
},
"dockerfiletemplate.askToStar": {
"type": [
"boolean"
],
"default": true,
"description": "Will ask the user to star the github repo."
}
}
}
},
"scripts": {
"vscode:build": "npx vsce package",
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"prettier_sources": "prettier --write ./src"
},
"devDependencies": {
"@types/vscode": "^1.87.0",
"prettier": "^3.2.5",
"typescript": "^5.4.5"
},
"__metadata": {
"id": "a70c54d6-50d6-49b6-9efb-fd30af880405",
"publisherDisplayName": "Quentin Gruber",
"publisherId": "653008df-b10c-4b10-8d9e-ad4edcfaf918",
"isPreReleaseVersion": false
}
}