-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
60 lines (60 loc) · 1.63 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
{
"name": "markdown-index",
"displayName": "markdown-index",
"description": "add index automatically to your titie",
"version": "0.0.9",
"publisher": "legendmohe",
"engines": {
"vscode": "^1.13.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onCommand:extension.addMarkdownIndex"
],
"main": "./out/src/extension",
"contributes": {
"commands": [
{
"command": "extension.addMarkdownIndex",
"title": "Markdown add index"
}
],
"configuration": {
"type": "object",
"title": "Markdown Index configuration",
"properties": {
"markdownIndex.indexBase": {
"type": "string",
"default": "#",
"description": "Customize the indicator of your title line"
}
}
}
},
"scripts": {
"vscode:prepublish": "tsc -p ./",
"compile": "tsc -watch -p ./",
"postinstall": "node ./node_modules/vscode/bin/install",
"test": "node ./node_modules/vscode/bin/test"
},
"devDependencies": {
"@types/mocha": "^2.2.48",
"@types/node": "^6.0.109",
"mocha": "^10.2.0",
"typescript": "^2.8.3",
"vscode": "^1.1.37"
},
"repository": {
"type": "git",
"url": "https://github.com/legendmohe/markdown_index.git"
},
"dependencies": {
"cryptiles": "^4.1.3",
"debug": "^4.3.1",
"growl": "^1.10.5",
"minimatch": "^3.0.5",
"url-parse": "^1.5.9"
}
}