forked from dfinke/vscode-pandoc
-
-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
144 lines (144 loc) · 4.5 KB
/
package.json
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
138
139
140
141
142
143
144
{
"name": "vscode-pandoc",
"description": "Renders markdown through pandoc",
"version": "0.4.8",
"publisher": "ChrisChinchilla",
"icon": "images/logo.png",
"license": "SEE LICENSE",
"bugs": {
"url": "https://github.com/chrischinchilla/vscode-pandoc/issues",
"email": "chris@chrischinchilla.com"
},
"homepage": "https://github.com/chrischinchilla/vscode-pandoc/blob/main/README.md",
"repository": {
"type": "git",
"url": "https://github.com/chrischinchilla/vscode-pandoc.git"
},
"sponsor": {
"url": "https://github.com/sponsors/ChrisChinchilla"
},
"engines": {
"vscode": "^1.88.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onLanguage:markdown",
"onLanguage:asciidoc",
"onLanguage:xml",
"onLanguage:html",
"onLanguage:epub",
"onLanguage:restructuredtext"
],
"main": "./dist/extension.js",
"contributes": {
"configuration": {
"type": "object",
"title": "Pandoc options",
"properties": {
"pandoc.executable": {
"type": "string",
"default": "pandoc",
"description": "pandoc executable location"
},
"pandoc.pdfOptString": {
"type": "string",
"default": "",
"description": "pandoc .pdf output option template that you would like to use"
},
"pandoc.docxOptString": {
"type": "string",
"default": "",
"description": "pandoc .docx output option template that you would like to use"
},
"pandoc.htmlOptString": {
"type": "string",
"default": "",
"description": "pandoc .html output option template that you would like to use"
},
"pandoc.asciidocOptString": {
"type": "string",
"default": "",
"description": "pandoc .asciidoc output option template that you would like to use"
},
"pandoc.docbookOptString": {
"type": "string",
"default": "",
"description": "pandoc .xml output option template that you would like to use"
},
"pandoc.epubOptString": {
"type": "string",
"default": "",
"description": "pandoc .epub output option template that you would like to use"
},
"pandoc.rstOptString": {
"type": "string",
"default": "",
"description": "pandoc .rst output option template that you would like to use"
},
"pandoc.render.openViewer": {
"type": "boolean",
"default": true,
"description": "specify if the extension will open the rendered document in it's default viewer"
},
"pandoc.useDocker": {
"type": "boolean",
"default": false,
"description": "specify if the extension will run pandoc from a docker container",
"markdownDeprecationMessage": "**Deprecated**: Please use `#pandoc.docker.enabled#` instead.",
"deprecationMessage": "Deprecated: Please use pandoc.docker.enabled instead."
},
"pandoc.docker.enabled": {
"type": "boolean",
"default": false,
"description": "specify if the extension will run pandoc from a docker container"
},
"pandoc.docker.options": {
"type": "string",
"default": "",
"description": "specify the docker options to use if \"docker.enabled\" is true"
},
"pandoc.docker.image": {
"type": "string",
"default": "pandoc/latex:latest",
"description": "specify the docker image to use if \"docker.enabled\" is true"
}
}
},
"keybindings": [
{
"command": "pandoc.render",
"key": "ctrl+K P",
"mac": "cmd+K P",
"when": "editorTextFocus && editorLangId == 'markdown'"
}
],
"commands": [
{
"command": "pandoc.render",
"title": "Pandoc Render"
}
]
},
"scripts": {
"vscode:prepublish": "webpack --mode production",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"pretest": "yarn run compile",
"test": "node ./out/test/runTest.js",
"webpack": "webpack --mode development",
"webpack-dev": "webpack --mode development --watch",
"test-compile": "tsc -p ./"
},
"devDependencies": {
"typescript": "^5.4.4",
"vscode-test": "^1.6.1",
"@types/vscode": "^1.88.0",
"@types/node": "^20.12.5",
"webpack": "^5.91.0",
"webpack-cli": "^5.1.4",
"ts-loader": "^9.5.1",
"tslint": "^6.1.3"
}
}