-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
138 lines (138 loc) · 5.12 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
{
"name": "better-comments-enhanced",
"displayName": "Better Comments (Markdown Support)",
"icon": "icon.png",
"description": "Improve your code commenting by annotating with alert, informational, TODOs, and more!",
"version": "1.0.3",
"publisher": "lovebird",
"author": {
"name": "Lovebird"
},
"homepage": "https://github.com/lovebirdsx/better-comments-enhanced/blob/master/README.md",
"license": "SEE LICENSE IN LICENSE.md",
"repository": {
"type": "git",
"url": "https://github.com/lovebirdsx/better-comments-enhanced"
},
"bugs": "https://github.com/lovebirdsx/better-comments-enhanced/issues",
"categories": [
"Formatters"
],
"engines": {
"vscode": "^1.65.0"
},
"extensionKind": [
"ui",
"workspace"
],
"activationEvents": [
"onStartupFinished"
],
"galleryBanner": {
"color": "#e3f4ff",
"theme": "light"
},
"browser": "./out/web/extension.js",
"main": "./out/extension",
"scripts": {
"package": "vsce package",
"publish": "vsce publish",
"vscode:prepublish": "npm run compile && npm run package-web",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"lint": "tslint -c tslint.json 'src/**/*.ts'",
"compile-web": "webpack --config ./build/web-extension.webpack.config.js",
"watch-web": "webpack --watch --config ./build/web-extension.webpack.config.js",
"package-web": "webpack --mode production --devtool hidden-source-map --config ./build/web-extension.webpack.config.js"
},
"contributes": {
"configuration": {
"title": "Better Comments configuration",
"properties": {
"better-comments.highlightMarkdown": {
"type": "boolean",
"description": "Whether the markdown text highlighter should be active",
"default": true
},
"better-comments.multilineComments": {
"type": "boolean",
"description": "Whether the multiline comment highlighter should be active",
"default": true
},
"better-comments.highlightPlainText": {
"type": "boolean",
"description": "Whether the plaintext comment highlighter should be active",
"default": false
},
"better-comments.tags": {
"type": "array",
"description": "Tags which are used to color the comments. Changes require a restart of VS Code to take effect",
"default": [
{
"tag": "!",
"color": "#FF2D00",
"strikethrough": false,
"underline": false,
"backgroundColor": "transparent",
"bold": false,
"italic": false
},
{
"tag": "?",
"color": "#3498DB",
"strikethrough": false,
"underline": false,
"backgroundColor": "transparent",
"bold": false,
"italic": false
},
{
"tag": "//",
"color": "#474747",
"strikethrough": true,
"underline": false,
"backgroundColor": "transparent",
"bold": false,
"italic": false
},
{
"tag": "todo",
"color": "#FF8C00",
"strikethrough": false,
"underline": false,
"backgroundColor": "transparent",
"bold": false,
"italic": false
},
{
"tag": "*",
"color": "#98C379",
"strikethrough": false,
"underline": false,
"backgroundColor": "transparent",
"bold": false,
"italic": false
}
]
}
}
}
},
"dependencies": {
"json5": "^2.2.1"
},
"devDependencies": {
"@types/json5": "^2.2.0",
"@types/node": "^17.0.23",
"@types/vscode": "^1.65.0",
"path-browserify": "^1.0.1",
"process": "^0.11.10",
"ts-loader": "^9.3.1",
"tslint": "^6.1.3",
"typescript": "^4.6.3",
"util": "^0.12.4",
"vsce": "^2.10.0",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0"
}
}