forked from daniel-junior-dube/vscode_banner_comments
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
166 lines (166 loc) · 5.73 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
{
"name": "banner-comments-fix",
"displayName": "Banner comments",
"description": "Converts selected lines into banner comments using figlet fonts",
"version": "1.0.2",
"publisher": "prof-darrel-francis",
"homepage": "https://github.com/darrelfrancis/vscode_banner_comments",
"bugs": {
"url": "https://github.com/darrelfrancis/vscode_banner_comments/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/darrelfrancis/vscode_banner_comments.git"
},
"engines": {
"vscode": "^1.1.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.h1": {
"type": "string",
"default": "Univers",
"description": "Selected Header #1 font.",
"scope": "resource"
},
"banner-comments.h2": {
"type": "string",
"default": "Standard",
"description": "Selected Header #2 font.",
"scope": "resource"
},
"banner-comments.h3": {
"type": "string",
"default": "Mini",
"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/mocha": "^2.2.42",
"@types/node": "^22.2.0",
"vscode": "^1.1.5"
},
"dependencies": {
"comment-json": "^1.1.3",
"figlet": "^1.2.0"
}
}