-
-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
205 lines (205 loc) · 6.14 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
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
{
"name": "markdown-checkbox",
"displayName": "Markdown Checkbox",
"description": "With this extension you can create checkboxes in markdown and mark them quickly.",
"version": "1.9.1",
"publisher": "PKief",
"author": {
"name": "Philipp Kief",
"email": "[email protected]",
"url": "https://pkief.github.io"
},
"engines": {
"vscode": "^1.22.1"
},
"scripts": {
"build": "npm run compile:dev",
"changelog": "changelog-machine --config changelog.config.json",
"compile": "webpack --mode production",
"compile:dev": "webpack --mode none",
"compile:watch": "webpack --mode none --watch",
"lint": "eslint -c .eslintrc.json --ext .ts ./src/**/*.ts",
"pretest": "npm run build && tsc -p ./ && ncp src/test/workspace out/test/workspace",
"test": "node ./out/test/runTest.js",
"version": "npm run changelog && git add CHANGELOG.md",
"vscode:prepublish": "npm run lint && npm run compile"
},
"categories": [
"Other"
],
"keywords": [
"markdown",
"todos",
"todo-list",
"checkbox"
],
"funding": "https://github.com/sponsors/PKief",
"sponsor": {
"url": "https://github.com/sponsors/PKief"
},
"homepage": "https://github.com/PKief/vscode-extension-markdown-checkbox/blob/main/README.md",
"repository": {
"type": "git",
"url": "https://github.com/PKief/vscode-extension-markdown-checkbox.git"
},
"bugs": {
"url": "https://github.com/PKief/vscode-extension-markdown-checkbox/issues"
},
"activationEvents": [
"onLanguage:markdown",
"onCommand:markdown-checkbox.createCheckbox",
"onCommand:markdown-checkbox.markCheckbox"
],
"icon": "logo.png",
"galleryBanner": {
"color": "#37474f",
"theme": "dark"
},
"main": "./dist/extension",
"browser": "./dist/extension",
"license": "SEE LICENSE IN LICENSE.md",
"contributes": {
"commands": [
{
"command": "markdown-checkbox.createCheckbox",
"title": "Markdown: Create checkbox"
},
{
"command": "markdown-checkbox.markCheckbox",
"title": "Markdown: Mark checkbox"
},
{
"command": "markdown-checkbox.showQuickPick",
"title": "Markdown: Pick checkboxes"
}
],
"keybindings": [
{
"command": "markdown-checkbox.createCheckbox",
"key": "ctrl+shift+c",
"mac": "cmd+shift+c",
"when": "editorTextFocus && resourceLangId == markdown"
},
{
"command": "markdown-checkbox.markCheckbox",
"key": "ctrl+shift+enter",
"mac": "cmd+shift+enter",
"when": "editorTextFocus && resourceLangId == markdown"
}
],
"menus": {
"editor/context": [
{
"when": "resourceLangId == markdown",
"command": "markdown-checkbox.createCheckbox",
"alt": "markdown-checkbox.createCheckbox",
"group": "markdown-checkbox"
},
{
"when": "resourceLangId == markdown",
"command": "markdown-checkbox.markCheckbox",
"alt": "markdown-checkbox.markCheckbox",
"group": "markdown-checkbox"
}
]
},
"configuration": {
"type": "object",
"title": "Markdown Checkbox",
"properties": {
"markdown-checkbox.languages": {
"type": "array",
"default": [
"markdown"
],
"description": "The language identifiers for which this extension is activated."
},
"markdown-checkbox.withBulletPoint": {
"type": "boolean",
"default": true,
"description": "Create a bullet point before the created checkbox."
},
"markdown-checkbox.typeOfBulletPoint": {
"type": "string",
"enum": [
"*",
"-",
"+"
],
"default": "*",
"description": "Bullet point character."
},
"markdown-checkbox.strikeThroughWhenChecked": {
"type": "boolean",
"default": true,
"description": "Strike through the line of the checkbox after checked."
},
"markdown-checkbox.italicWhenChecked": {
"type": "boolean",
"default": true,
"description": "Italic font style of line of the checkbox after the checkbox has been checked."
},
"markdown-checkbox.dateWhenChecked": {
"type": "boolean",
"default": true,
"description": "Add date behind the checkbox item after the checkbox has been checked."
},
"markdown-checkbox.showStatusBarItem": {
"type": "boolean",
"default": true,
"description": "Show the amount of selected checkboxes in the status bar."
},
"markdown-checkbox.checkmark": {
"type": "string",
"enum": [
"X",
"x"
],
"default": "X",
"description": "Checkmark of the checkbox."
},
"markdown-checkbox.dateFormat": {
"type": "string",
"default": "YYYY-MM-DD",
"description": "Format date"
},
"markdown-checkbox.dateTemplate": {
"type": "string",
"default": "[{date}]",
"markdownDescription": "The date template `{date}` is replaced by the actual date."
}
}
}
},
"devDependencies": {
"@types/glob": "^7.2.0",
"@types/mocha": "^9.1.1",
"@types/moment": "^2.13.0",
"@types/node": "^18.0.6",
"@types/vscode": "~1.22.0",
"@typescript-eslint/eslint-plugin": "^5.30.7",
"@typescript-eslint/parser": "^5.30.7",
"changelog-machine": "^1.0.2",
"eslint": "^8.20.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"glob": "^8.0.3",
"mocha": "^10.0.0",
"ncp": "^2.0.0",
"prettier": "^2.7.1",
"ts-loader": "^9.3.1",
"typescript": "^4.7.4",
"vscode-test": "^1.6.1",
"webpack": "^5.94.0",
"webpack-cli": "^4.10.0"
},
"dependencies": {
"moment": "2.29.4"
},
"__metadata": {
"id": "f0b7de7d-8e14-44df-998a-630ffdb32cf8",
"publisherDisplayName": "Philipp Kief",
"publisherId": "f9e5bc2f-fea1-4075-917f-d83e01e69f56",
"isPreReleaseVersion": false
}
}