Skip to content

Commit

Permalink
1.2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
jinhui committed Jan 16, 2020
1 parent 09fad28 commit 26e2764
Showing 1 changed file with 179 additions and 179 deletions.
358 changes: 179 additions & 179 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,179 +1,179 @@
{
"name": "markdown-preview-showdown",
"displayName": "%mdps.displayname%",
"description": "%mdps.description%",
"version": "1.2.0",
"publisher": "jhuix",
"author": {
"name": "jhuix"
},
"engines": {
"vscode": "^1.39.0"
},
"categories": [
"Other"
],
"keywords": [
"markdown",
"preview",
"showdown",
"showdowns",
"html",
"vscode",
"MDPS"
],
"icon": "media/logo.png",
"activationEvents": [
"onLanguage:markdown",
"onCommand:markdown-preview-showdown.openPreview"
],
"main": "./out/extension.js",
"contributes": {
"commands": [
{
"command": "markdown-preview-showdown.openPreview",
"title": "%mdps.openPreview%",
"category": "Markdown",
"icon": {
"light": "./media/rightpane-16-light.png",
"dark": "./media/rightpane-16-dark.png"
}
}
],
"keybindings": [
{
"command": "markdown-preview-showdown.openPreview",
"key": "ctrl+shift+v ctrl+shift+v",
"mac": "cmd+shift+v cmd+shift+v",
"when": "editorLangId == markdown"
}
],
"menus": {
"editor/context": [
{
"command": "markdown-preview-showdown.openPreview",
"when": "editorLangId == markdown",
"group": "markdown-preview-showdown"
}
],
"editor/title": [
{
"command": "markdown-preview-showdown.openPreview",
"when": "editorLangId == markdown",
"group": "navigation"
}
]
},
"configuration": {
"type": "object",
"title": "%mdps.title%",
"properties": {
"markdown-preview-showdown.autoPreview": {
"description": "%mdps.autoPreview%",
"default": false,
"type": "boolean"
},
"markdown-preview-showdown.fontSize": {
"description": "%mdps.fontSize%",
"default": 14,
"type": "number"
},
"markdown-preview-showdown.scrollSync": {
"description": "%mdps.scrollSync%",
"default": true,
"type": "boolean"
},
"markdown-preview-showdown.maxContentSize": {
"description": "%mdps.maxContentSize%",
"default": 32768,
"type": "number"
},
"markdown-preview-showdown.mermaidTheme": {
"description": "%mdps.mermaidTheme%",
"default": "default",
"type": "string",
"enum": [
"default",
"dark",
"forest",
"neutral"
]
},
"markdown-preview-showdown.vegaTheme": {
"description": "%mdps.vegaTheme%",
"default": "vox",
"type": "string",
"enum": [
"excel",
"ggplot2",
"quartz",
"vox",
"dark"
]
},
"markdown-preview-showdown.plantumlRenderMode": {
"description": "%mdps.plantumlRenderMode%",
"default": "local",
"type": "string",
"enum": [
"local",
"remote"
]
},
"markdown-preview-showdown.plantumlWebsite": {
"description": "%mdps.plantumlWebsite%",
"default": "www.plantuml.com/plantuml",
"type": "string"
},
"markdown-preview-showdown.usePuppeteerCore": {
"description": "%mdps.usePuppeteerCore%",
"default": true,
"type": "boolean"
},
"markdown-preview-showdown.puppeteerWaitForTimeout": {
"description": "%mdps.puppeteerWaitForTimeout%",
"default": 0,
"type": "number"
},
"markdown-preview-showdown.chromePath": {
"description": "%mdps.chromePath%",
"default": "",
"type": "string",
"scope": "machine"
}
}
}
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./"
},
"devDependencies": {
"@types/glob": "^7.1.1",
"@types/mkdirp": "^0.5.2",
"@types/mocha": "^5.2.6",
"@types/node": "^12.0.9",
"@types/vscode": "^1.39.0",
"glob": "^7.1.4",
"mocha": "^6.1.4",
"semver": "^6.3.0",
"tslint": "^5.20.1",
"tslint-config-alloy": "^0.2.1",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.3.1",
"vscode-test": "^1.2.3"
},
"dependencies": {
"@jhuix/showdowns": "^0.4.0",
"mkdirp": "^0.5.1",
"puppeteer-core": "^2.0.0",
"throttle-debounce": "^2.1.0"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/jhuix/vscode-markdown-preview-showdown"
},
"homepage": "https://github.com/jhuix/vscode-markdown-preview-showdown/blob/master/README.md"
}
{
"name": "markdown-preview-showdown",
"displayName": "%mdps.displayname%",
"description": "%mdps.description%",
"version": "1.2.1",
"publisher": "jhuix",
"author": {
"name": "jhuix"
},
"engines": {
"vscode": "^1.39.0"
},
"categories": [
"Other"
],
"keywords": [
"markdown",
"preview",
"showdown",
"showdowns",
"html",
"vscode",
"MDPS"
],
"icon": "media/logo.png",
"activationEvents": [
"onLanguage:markdown",
"onCommand:markdown-preview-showdown.openPreview"
],
"main": "./out/extension.js",
"contributes": {
"commands": [
{
"command": "markdown-preview-showdown.openPreview",
"title": "%mdps.openPreview%",
"category": "Markdown",
"icon": {
"light": "./media/rightpane-16-light.png",
"dark": "./media/rightpane-16-dark.png"
}
}
],
"keybindings": [
{
"command": "markdown-preview-showdown.openPreview",
"key": "ctrl+shift+v ctrl+shift+v",
"mac": "cmd+shift+v cmd+shift+v",
"when": "editorLangId == markdown"
}
],
"menus": {
"editor/context": [
{
"command": "markdown-preview-showdown.openPreview",
"when": "editorLangId == markdown",
"group": "markdown-preview-showdown"
}
],
"editor/title": [
{
"command": "markdown-preview-showdown.openPreview",
"when": "editorLangId == markdown",
"group": "navigation"
}
]
},
"configuration": {
"type": "object",
"title": "%mdps.title%",
"properties": {
"markdown-preview-showdown.autoPreview": {
"description": "%mdps.autoPreview%",
"default": false,
"type": "boolean"
},
"markdown-preview-showdown.fontSize": {
"description": "%mdps.fontSize%",
"default": 14,
"type": "number"
},
"markdown-preview-showdown.scrollSync": {
"description": "%mdps.scrollSync%",
"default": true,
"type": "boolean"
},
"markdown-preview-showdown.maxContentSize": {
"description": "%mdps.maxContentSize%",
"default": 32768,
"type": "number"
},
"markdown-preview-showdown.mermaidTheme": {
"description": "%mdps.mermaidTheme%",
"default": "default",
"type": "string",
"enum": [
"default",
"dark",
"forest",
"neutral"
]
},
"markdown-preview-showdown.vegaTheme": {
"description": "%mdps.vegaTheme%",
"default": "vox",
"type": "string",
"enum": [
"excel",
"ggplot2",
"quartz",
"vox",
"dark"
]
},
"markdown-preview-showdown.plantumlRenderMode": {
"description": "%mdps.plantumlRenderMode%",
"default": "local",
"type": "string",
"enum": [
"local",
"remote"
]
},
"markdown-preview-showdown.plantumlWebsite": {
"description": "%mdps.plantumlWebsite%",
"default": "www.plantuml.com/plantuml",
"type": "string"
},
"markdown-preview-showdown.usePuppeteerCore": {
"description": "%mdps.usePuppeteerCore%",
"default": true,
"type": "boolean"
},
"markdown-preview-showdown.puppeteerWaitForTimeout": {
"description": "%mdps.puppeteerWaitForTimeout%",
"default": 0,
"type": "number"
},
"markdown-preview-showdown.chromePath": {
"description": "%mdps.chromePath%",
"default": "",
"type": "string",
"scope": "machine"
}
}
}
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./"
},
"devDependencies": {
"@types/glob": "^7.1.1",
"@types/mkdirp": "^0.5.2",
"@types/mocha": "^5.2.6",
"@types/node": "^12.0.9",
"@types/vscode": "^1.39.0",
"glob": "^7.1.4",
"mocha": "^6.1.4",
"semver": "^6.3.0",
"tslint": "^5.20.1",
"tslint-config-alloy": "^0.2.1",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.3.1",
"vscode-test": "^1.2.3"
},
"dependencies": {
"@jhuix/showdowns": "^0.4.0",
"mkdirp": "^0.5.1",
"puppeteer-core": "^2.0.0",
"throttle-debounce": "^2.1.0"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/jhuix/vscode-markdown-preview-showdown"
},
"homepage": "https://github.com/jhuix/vscode-markdown-preview-showdown/blob/master/README.md"
}

0 comments on commit 26e2764

Please sign in to comment.