-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
137 lines (137 loc) Β· 3.33 KB
/
package.json
File metadata and controls
137 lines (137 loc) Β· 3.33 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
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
{
"name": "markdown-wiki",
"displayName": "Markdown Wiki",
"description": "Keep a wiki in Visual Studio Code",
"author": "Successible",
"publisher": "Successible",
"version": "0.0.0",
"private": true,
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/successible/markdown-wiki.git"
},
"icon": "icon.png",
"engines": {
"vscode": "^1.116.0"
},
"main": "./out/extension.js",
"activationEvents": [
"onLanguage:markdown"
],
"contributes": {
"configuration": {
"title": "Markdown Wiki",
"properties": {
"Markdown Wiki.readability": {
"type": "boolean",
"description": "Enable the checking of readability.",
"default": true
},
"Markdown Wiki.excludedWords": {
"type": "array",
"description": "Words to exclude from the spell checker.",
"default": []
}
}
},
"grammars": [
{
"scopeName": "markdown.wiki.link",
"path": "./grammar/link.json",
"injectTo": [
"text.html.markdown"
]
},
{
"scopeName": "markdown.wiki.note",
"path": "./grammar/note.json",
"injectTo": [
"text.html.markdown"
]
}
],
"commands": [
{
"command": "markdown-wiki.insertFootnote",
"title": "Insert Footnote"
},
{
"command": "markdown-wiki.orderFootnotes",
"title": "Order Footnotes"
},
{
"command": "markdown-wiki.analyzeFiles",
"title": "Analyze Files"
},
{
"command": "markdown-wiki.analyzeFile",
"title": "Analyze File"
},
{
"command": "markdown-wiki.excludeWord",
"title": "Exclude Word"
}
],
"menus": {
"commandPalette": [
{
"command": "markdown-wiki.insertFootnote",
"when": "editorLangId == markdown"
},
{
"command": "markdown-wiki.orderFootnotes",
"when": "editorLangId == markdown"
},
{
"command": "markdown-wiki.analyzeFiles",
"when": "editorLangId == markdown"
}
]
},
"keybindings": [
{
"command": "markdown-wiki.insertFootnote",
"key": "ctrl+'",
"mac": "cmd+'"
},
{
"command": "markdown-wiki.orderFootnotes",
"key": "ctrl+shift+'",
"mac": "cmd+shift+'"
}
]
},
"scripts": {
"lint": "cd src && npx tsc && npx biome check --fix --unsafe",
"build": "tsc -p ./ && cp -r grammar out/grammar",
"vscode:prepublish": "npm run build",
"watch": "tsc -watch -p ./"
},
"dependencies": {
"@prettier/sync": "0.6.1",
"dayjs": "1.11.20",
"glob": "13.0.6",
"ignore": "7.0.5",
"lodash": "4.18.1",
"p-debounce": "5.1.0",
"pluralize": "8.0.0",
"remove-markdown": "0.6.4",
"sentence-splitter": "5.0.1",
"shelljs": "0.10.0",
"uuid": "14.0.0",
"valid-url": "1.0.9"
},
"devDependencies": {
"@biomejs/biome": "2.4.15",
"@textlint/ast-node-types": "15.7.1",
"@types/lodash": "4.17.24",
"@types/node": "24.12.4",
"@types/pluralize": "0.0.33",
"@types/shelljs": "0.10.0",
"@types/valid-url": "1.0.7",
"@types/vscode": "1.120.0",
"@vscode/vsce": "3.9.1",
"typescript": "6.0.3"
}
}