-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
44 lines (44 loc) · 1.05 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
{
"name": "markdown-footnotes",
"version": "0.1.1",
"displayName": "Markdown Footnotes",
"description": "Adds [^footnote] syntax support to VS Code's built-in markdown preview",
"keywords": [
"markdown",
"footnotes",
"md",
"documentation"
],
"icon": "logo/logox128.png",
"publisher": "bierner",
"license": "MIT",
"repository": {
"url": "https://github.com/mjbvz/vscode-markdown-footnotes.git"
},
"bugs": {
"url": "https://github.com/mjbvz/vscode-markdown-footnotes/issues"
},
"engines": {
"vscode": "^1.60.0"
},
"categories": [
"Other"
],
"activationEvents": [],
"contributes": {
"markdown.markdownItPlugins": true
},
"main": "./dist/extension.js",
"browser": "./dist/extension.js",
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "esbuild src/extension.js --format=cjs --bundle --minify --outfile=dist/extension.js"
},
"devDependencies": {
"@types/vscode": "^1.60",
"esbuild": "^0.15.14"
},
"dependencies": {
"markdown-it-footnote": "^3.0.3"
}
}