-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
88 lines (88 loc) · 2.25 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
{
"name": "vscode-markdown-ide",
"displayName": "Markdown IDE",
"version": "0.4.3",
"description": "IDE-grade tooling for Markdown: refactoring and autocompletion",
"categories": [
"Other"
],
"keywords": [
"markdown",
"development",
"refactoring",
"autocompletion"
],
"bugs": {
"url": "https://github.com/kevgo/vscode-markdown-ide/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/kevgo/vscode-markdown-ide"
},
"publisher": "kevgo",
"main": "./dist/main.js",
"scripts": {
"compile": "make --no-print-directory build-dev",
"vscode:prepublish": "make --no-print-directory build",
"watch": "make --no-print-directory watch"
},
"contributes": {
"commands": [
{
"command": "markdownIDE.renameDocumentTitle",
"title": "Rename document title",
"category": "Markdown IDE"
},
{
"command": "markdownIDE.tikibaseFix",
"title": "Tikibase Fix all issues",
"category": "Markdown IDE"
}
],
"menus": {
"commandPalette": [
{
"command": "markdownIDE.renameDocumentTitle",
"when": "editorLangId == markdown"
}
]
}
},
"activationEvents": [
"onLanguage:markdown"
],
"dependencies": {
"@sindresorhus/slugify": "1.1.0"
},
"devDependencies": {
"@types/mocha": "9.1.1",
"@types/node": "18.7.11",
"@types/vscode": "1.70.0",
"@typescript-eslint/eslint-plugin": "5.34.0",
"@typescript-eslint/parser": "5.34.0",
"@vscode/test-electron": "2.1.5",
"assert-no-diff": "3.0.6",
"esbuild": "0.15.5",
"eslint": "8.22.0",
"eslint-plugin-simple-import-sort": "7.0.0",
"eslint-plugin-typescript-sort-keys": "2.1.0",
"mocha": "10.0.0",
"sort-package-json": "1.57.0",
"text-runner": "6.0.0",
"textrun-make": "0.2.0",
"ts-node": "10.9.1",
"typescript": "4.7.4",
"vsce": "2.10.2"
},
"engines": {
"vscode": "^1.67.0"
},
"icon": "documentation/logo.png",
"badges": [
{
"description": "build status",
"url": "https://github.com/kevgo/vscode-markdown-ide/actions/workflows/main.yml/badge.svg",
"href": "https://github.com/kevgo/vscode-markdown-ide/actions/workflows/main.yml"
}
]
}