-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathplugin.json
More file actions
29 lines (29 loc) · 744 Bytes
/
Copy pathplugin.json
File metadata and controls
29 lines (29 loc) · 744 Bytes
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
{
"$schema": "https://json.schemastore.org/claude-code-plugin-manifest.json",
"name": "mdsmith-lsp",
"description": "mdsmith in Claude Code — neat, consistent Markdown with inline diagnostics and cross-file navigation, so your Markdown stays a single source of truth.",
"homepage": "https://github.com/jeduden/mdsmith",
"repository": "https://github.com/jeduden/mdsmith",
"license": "MIT",
"keywords": [
"markdown",
"linter",
"lsp"
],
"lspServers": {
"mdsmith": {
"command": "npx",
"args": [
"-y",
"-p",
"@mdsmith/cli",
"mdsmith",
"lsp"
],
"extensionToLanguage": {
".md": "markdown",
".markdown": "markdown"
}
}
}
}