-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2 KB
/
Copy pathpackage.json
File metadata and controls
78 lines (78 loc) · 2 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
{
"name": "cheatmd",
"displayName": "CheatMD",
"description": "Syntax highlighting, linting, completion, and CodeLens execution for CheatMD Markdown files.",
"version": "0.1.0",
"publisher": "cheatmd-dev",
"repository": {
"type": "git",
"url": "https://github.com/cheatmd-dev/cheatmd-vscode.git"
},
"homepage": "https://cheatmd.dev",
"bugs": {
"url": "https://github.com/cheatmd-dev/cheatmd-vscode/issues"
},
"license": "MIT",
"engines": {
"vscode": "^1.75.0"
},
"categories": [
"Programming Languages",
"Linters",
"Other"
],
"activationEvents": [
"onLanguage:markdown"
],
"main": "./dist/extension.js",
"contributes": {
"commands": [
{
"command": "cheatmd.runCheat",
"title": "Run with CheatMD"
}
],
"grammars": [
{
"injectTo": [
"text.html.markdown"
],
"scopeName": "text.html.markdown.cheatmd.embedded",
"path": "./syntaxes/cheatmd.embedded.json"
}
],
"configuration": {
"title": "CheatMD",
"properties": {
"cheatmd.linter.enable": {
"type": "boolean",
"default": true,
"description": "Enable or disable real-time linting for CheatMD files."
},
"cheatmd.linter.executablePath": {
"type": "string",
"default": "cheatmd",
"description": "Path to the cheatmd executable. Defaults to 'cheatmd' in your system PATH."
},
"cheatmd.linter.strict": {
"type": "boolean",
"default": false,
"description": "Treat lint warnings as errors."
}
}
}
},
"scripts": {
"compile": "node esbuild.js",
"watch": "node esbuild.js --watch",
"vscode:prepublish": "node esbuild.js --minify",
"package": "vsce package --no-dependencies"
},
"devDependencies": {
"@types/node": "^20.19.41",
"@types/vscode": "^1.75.0",
"@vscode/vsce": "^3.9.1",
"esbuild": "^0.28.0",
"typescript": "^5.0.0"
}
}