-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.88 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 1.88 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
{
"name": "vscode-markdown-tags",
"displayName": "Tags for Markdown",
"description": "Enhance your Markdown documents with custom tag styling. Add predefined or custom labels, customizable colors, and arrow indicators to visually track tasks and statuses in the native VS Code preview.",
"version": "1.2.0",
"icon": "icon.png",
"license": "MIT",
"publisher": "BinaryNoir",
"repository": {
"type": "git",
"url": "https://github.com/binarynoir/vscode-markdown-tags"
},
"engines": {
"vscode": "^1.95.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onLanguage:markdown"
],
"main": "./dist/extension.js",
"contributes": {
"markdown.markdownItPlugins": true,
"commands": [
{
"command": "markdown-tag.preview",
"title": "Show Markdown Tags Preview"
}
],
"markdown.previewStyles": [
"./dist/style.css"
],
"markdown.previewScripts": [
"./dist/extension.js"
]
},
"scripts": {
"clean": "rimraf dist/* out/*",
"vscode:prepublish": "npm run package",
"compile": "webpack",
"watch": "webpack --watch",
"package": "webpack --mode production --devtool hidden-source-map",
"lint": "eslint src",
"prebuild": "npm run clean && npm run lint",
"build": "npm run compile && npm run package",
"prepublish": "npm run build",
"publish": "vsce package && vsce publish",
"postpublish": "echo 'Publishing complete!'"
},
"devDependencies": {
"@types/markdown-it": "^14.1.2",
"@types/mocha": "^10.0.9",
"@types/node": "20.x",
"@types/vscode": "^1.95.0",
"@typescript-eslint/eslint-plugin": "^8.10.0",
"@typescript-eslint/parser": "^8.7.0",
"@vscode/test-cli": "^0.0.10",
"@vscode/test-electron": "^2.4.1",
"@vscode/vsce": "^3.2.1",
"copy-webpack-plugin": "^12.0.2",
"eslint": "^9.13.0",
"markdown-it": "^14.1.0",
"rimraf": "^5.0.0",
"ts-loader": "^9.5.1",
"typescript": "^5.6.3",
"webpack": "^5.95.0",
"webpack-cli": "^5.1.4"
}
}