forked from wibblemonkey/vscode-markdown-auto-toc
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
106 lines (106 loc) · 3.75 KB
/
package.json
File metadata and controls
106 lines (106 loc) · 3.75 KB
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
{
"name": "markdown-auto-toc",
"displayName": "Markdown AutoTOC",
"description": "Adds support for inserting an auto-generated table of contents to VS Code's built-in markdown preview using the [[TOC]] syntax.",
"version": "0.3.0",
"publisher": "wibblemonkey",
"keywords": [
"markdown",
"contents",
"table of contents",
"toc"
],
"icon": "logo/logo.png",
"license": "MIT",
"homepage": "https://github.com/wibblemonkey/vscode-markdown-auto-toc/blob/master/README.md",
"repository": {
"type": "git",
"url": "https://github.com/wibblemonkey/vscode-markdown-auto-toc.git"
},
"bugs": {
"url": "https://github.com/wibblemonkey/vscode-markdown-auto-toc/issues"
},
"engines": {
"vscode": "^1.28.0"
},
"categories": [
"Other"
],
"activationEvents": [],
"main": "./extension",
"contributes": {
"configuration": {
"type": "object",
"title": "Markdown AutoTOC",
"properties": {
"markdownAutoTOC.maximumHeadingLevel": {
"type": "integer",
"enum": [
1,
2,
3,
4,
5,
6
],
"enumDescriptions": [
"Heading 1",
"Heading 2",
"Heading 3",
"Heading 4",
"Heading 5",
"Heading 6"
],
"minimum": 1,
"maximum": 6,
"default": 2,
"description": "The maximum heading level to include in the generated table of contents."
},
"markdownAutoTOC.containerClass": {
"type": "string",
"default": "toc-container",
"markdownDescription": "The HTML class to apply to the generated `<div/>` for the table of contents."
},
"markdownAutoTOC.header": {
"type": "boolean",
"default": true,
"description": "Include a heading above the generated table of contents."
},
"markdownAutoTOC.headerClass": {
"type": "string",
"default": "toc-container-header",
"markdownDescription": "The HTML class to apply to the generated `<div/>` for the table of contents header."
},
"markdownAutoTOC.headerContent": {
"type": "string",
"default": "Contents",
"description": "The header text to display above the table of contents."
},
"markdownAutoTOC.enableAzureDevOpsWikiCompatibility": {
"type": "boolean",
"default": true,
"markdownDescription": "Allow `[[_TOC_]]` as the token to generate the table of contents."
}
}
},
"markdown.markdownItPlugins": true
},
"scripts": {
"postinstall": "node ./node_modules/vscode/bin/install",
"test": "node ./node_modules/vscode/bin/test"
},
"devDependencies": {
"@types/mocha": "^2.2.42",
"@types/node": "^8.10.38",
"eslint": "^4.11.0",
"typescript": "^2.6.1",
"vscode": "^1.1.22"
},
"dependencies": {
"js-htmlencode": "^0.3.0",
"markdown-it-table-of-contents": "^0.4.3",
"node-emoji": "^1.10.0",
"remove-markdown": "^0.3.0",
"striptags": "^3.1.1"
}
}