-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
179 lines (179 loc) · 4.86 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
173
174
175
176
177
178
179
{
"name": "banner-comments",
"displayName": "Banner comments",
"description": "Converts selected lines into banner comments using figlet fonts.",
"version": "0.4.3",
"publisher": "heyimfuzz",
"homepage": "https://github.com/daniel-junior-dube/vscode_banner_comments",
"bugs": {
"url": "https://github.com/daniel-junior-dube/vscode_banner_comments/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/daniel-junior-dube/vscode_banner_comments.git"
},
"engines": {
"vscode": "^1.34.0"
},
"keywords": [
"figlet",
"comments",
"banners",
"headers",
"blocks",
"titles",
"minimap"
],
"categories": [
"Programming Languages",
"Formatters",
"Other"
],
"activationEvents": [
"onCommand:extension.bannerCommentApplyFromList",
"onCommand:extension.bannerCommentApplyH1",
"onCommand:extension.bannerCommentApplyH2",
"onCommand:extension.bannerCommentApplyH3",
"onCommand:extension.bannerCommentApplyFavorite",
"onCommand:extension.bannerCommentSetH1Font",
"onCommand:extension.bannerCommentSetH2Font",
"onCommand:extension.bannerCommentSetH3Font",
"onCommand:extension.bannerCommentAddToFavorite",
"onCommand:extension.bannerCommentRemoveFromFavorite"
],
"main": "./out/extension",
"icon": "images/banner-comment-icon.png",
"galleryBanner": {
"color": "#333333",
"theme": "dark"
},
"contributes": {
"commands": [
{
"command": "extension.bannerCommentApplyFromList",
"title": "Banner comments: Apply from list"
},
{
"command": "extension.bannerCommentApplyH1",
"title": "Banner comments: Apply h1 font"
},
{
"command": "extension.bannerCommentApplyH2",
"title": "Banner comments: Apply h2 font"
},
{
"command": "extension.bannerCommentApplyH3",
"title": "Banner comments: Apply h3 font"
},
{
"command": "extension.bannerCommentApplyFavorite",
"title": "Banner comments: Apply from favorites"
},
{
"command": "extension.bannerCommentSetH1Font",
"title": "Banner comments: Set h1 font"
},
{
"command": "extension.bannerCommentSetH2Font",
"title": "Banner comments: Set h2 font"
},
{
"command": "extension.bannerCommentSetH3Font",
"title": "Banner comments: Set h3 font"
},
{
"command": "extension.bannerCommentAddToFavorite",
"title": "Banner comments: Add to favorites"
},
{
"command": "extension.bannerCommentRemoveFromFavorite",
"title": "Banner comments: Remove from favorites"
}
],
"configuration": {
"type": "object",
"title": "Banner comments",
"properties": {
"banner-comments.figlet.horizontalLayout": {
"type": "string",
"default": "default",
"enum": [
"default",
"full",
"fitted",
"controlled smushing",
"universal smushing"
],
"description": "A string value that indicates the horizontal layout to use.",
"scope": "resource"
},
"banner-comments.figlet.verticalLayout": {
"type": "string",
"default": "default",
"enum": [
"default",
"full",
"fitted",
"controlled smushing",
"universal smushing"
],
"description": "A string value that indicates the horizontal layout to use.",
"scope": "resource"
},
"banner-comments.figlet.width": {
"type": "integer",
"default": 80,
"description": "This option allows you to limit the width of the output. For example, if you want your output to be a max of 80 characters wide, you would set this option to 80.",
"scope": "resource"
},
"banner-comments.figlet.whitespaceBreak": {
"type": "boolean",
"default": false,
"description": "This option works in conjunction with 'width'. If this option is set to true, then the library will attempt to break text up on whitespace when limiting the width.",
"scope": "resource"
},
"banner-comments.h1": {
"type": "string",
"default": "Banner4",
"description": "Selected Header #1 font.",
"scope": "resource"
},
"banner-comments.h2": {
"type": "string",
"default": "Banner4",
"description": "Selected Header #2 font.",
"scope": "resource"
},
"banner-comments.h3": {
"type": "string",
"default": "Banner4",
"description": "Selected Header #3 font.",
"scope": "resource"
},
"banner-comments.favorites": {
"type": "array",
"default": [],
"description": "List of favorited figlet fonts.",
"scope": "resource"
}
}
}
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"postinstall": "node ./node_modules/vscode/bin/install",
"test": "npm run compile && node ./node_modules/vscode/bin/test"
},
"devDependencies": {
"@types/figlet": "^1.5.0",
"@types/node": "^14.18.0",
"typescript": "^4.8.0",
"vscode": "^1.1.37"
},
"dependencies": {
"json5": "^2.2.1",
"figlet": "^1.5.0"
}
}