-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
111 lines (111 loc) · 3.85 KB
/
Copy pathpackage.json
File metadata and controls
111 lines (111 loc) · 3.85 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
{
"name": "markdown-inline-preview-vscode",
"version": "1.2.1",
"description": "A VS Code extension for improving the display of markdown directly in the editor",
"license": "MIT",
"author": "Adam Jones (domdomegg)",
"publisher": "domdomegg",
"icon": "branding/icon.jpg",
"private": "true",
"repository": {
"type": "git",
"url": "https://github.com/domdomegg/markdown-inline-preview-vscode.git"
},
"engines": {
"vscode": "^1.96.0"
},
"categories": [
"Programming Languages",
"Themes",
"Other"
],
"activationEvents": [
"onLanguage:markdown"
],
"main": "./dist/extension.js",
"contributes": {
"configuration": {
"title": "Markdown Inline Preview",
"properties": {
"markdownInlinePreview.bold": {
"type": "boolean",
"default": true,
"description": "Hide bold syntax markers (**text** or __text__)."
},
"markdownInlinePreview.italic": {
"type": "boolean",
"default": true,
"description": "Hide italic syntax markers (*text* or _text_)."
},
"markdownInlinePreview.strikethrough": {
"type": "boolean",
"default": true,
"description": "Hide strikethrough syntax markers (~~text~~)."
},
"markdownInlinePreview.inlineCode": {
"type": "boolean",
"default": true,
"description": "Hide inline code syntax markers (`code`)."
},
"markdownInlinePreview.blockCode": {
"type": "boolean",
"default": true,
"description": "Hide code block syntax markers (```language)."
},
"markdownInlinePreview.simpleURI": {
"type": "boolean",
"default": true,
"description": "Hide simple URI syntax markers (<url>)."
},
"markdownInlinePreview.aliasedURIs": {
"type": "boolean",
"default": false,
"description": "Hide markdown link syntax for aliased URIs (e.g., [text](uri)). When enabled, only the link text is shown."
},
"markdownInlinePreview.referenceURIs": {
"type": "boolean",
"default": true,
"description": "Hide reference-style URI syntax markers (e.g., [text][ref])."
},
"markdownInlinePreview.referenceURIsFully": {
"type": "boolean",
"default": true,
"description": "Hide the reference part of reference-style URIs (e.g., [text][ref]). When enabled, only the link text is shown. Only applies when referenceURIs is enabled."
},
"markdownInlinePreview.headings": {
"type": "boolean",
"default": true,
"description": "Hide heading syntax markers (# Heading)."
},
"markdownInlinePreview.horizontalLine": {
"type": "boolean",
"default": true,
"description": "Replace horizontal line syntax (---, ***, ___) with an actual horizontal line."
}
}
}
},
"scripts": {
"test": "echo 'Run tests using the `Run and Debug` preset in VS Code instead.'",
"lint": "eslint .",
"clean": "rm -rf dist",
"watch": "tsc --project tsconfig.build.json --watch",
"build": "tsc --project tsconfig.build.json && vsce package --out dist/extension.vsix",
"deploy:prod": "npm run clean && npm run build && vsce publish --packagePath dist/extension.vsix --pat $AZURE_DEVOPS_TOKEN && ovsx publish dist/extension.vsix --pat $OPEN_VSX_TOKEN"
},
"devDependencies": {
"@tsconfig/node-lts": "^20.1.3",
"@types/mocha": "^10.0.10",
"@types/node": "^20.17.50",
"@types/vscode": "^1.96.0",
"@vscode/test-electron": "^2.5.2",
"@vscode/vsce": "^3.7.1",
"eslint": "^9.28.0",
"eslint-config-domdomegg": "^2.0.9",
"glob": "^11.1.0",
"mocha": "^10.8.2",
"ovsx": "^0.10.9",
"tsconfig-domdomegg": "^1.0.0",
"typescript": "^5.9.3"
}
}