UNPKG

markdown-table-prettify

Version:

Transforms markdown tables to be more readable.

104 lines 2.79 kB
{ "name": "markdown-table-prettify", "displayName": "Markdown Table Prettifier", "description": "Transforms markdown tables to be more readable.", "version": "3.6.0", "publisher": "darkriszty", "repository": { "type": "git", "url": "https://github.com/darkriszty/MarkdownTablePrettify-VSCodeExt" }, "bugs": { "url": "https://github.com/darkriszty/MarkdownTablePrettify-VSCodeExt/issues" }, "icon": "assets/logo.png", "engines": { "vscode": "^1.59.0" }, "categories": [ "Formatters" ], "keywords": [ "markdown", "table", "formatter" ], "activationEvents": [ "onStartupFinished" ], "main": "./cli/cliPrettify.js", "contributes": { "configuration": { "type": "object", "title": "Markdown Table Prettifier Configuration", "properties": { "markdownTablePrettify.showWindowMessages": { "type": "boolean", "default": true, "description": "Whether or not show window messages." }, "markdownTablePrettify.maxTextLength": { "type": "integer", "default": 1000000, "description": "The maximum text length to apply formatting to." }, "markdownTablePrettify.extendedLanguages": { "type": "array", "default": [], "description": "Additional VSCode language identifiers to register the formatter for. Eg: [ 'ruby' ]" }, "markdownTablePrettify.columnPadding": { "type": "integer", "default": 0, "description": "The left and right padding value expressed in number of spaces." } } }, "commands": [ { "command": "markdownTablePrettify.prettifyTables", "title": "Prettify markdown tables" } ], "keybindings": [ { "command": "markdownTablePrettify.prettifyTables", "key": "ctrl+alt+m", "mac": "cmd+alt+m", "when": "editorTextFocus && !editorReadonly && !inCompositeEditor" } ] }, "capabilities": { "documentFormattingProvider": "true" }, "scripts": { "vscode:prepublish": "tsc -p ./", "dist": "rm -r ./out && tsc -p ./ --lib 'ES5' --target 'ES5' --sourceMap false --downlevelIteration true && gulp merge-packagejson-for-npm-dist && cp README.md out && cp LICENSE out && cd out && rm ./test && npm pack", "compile": "tsc -p ./", "pretest": "npm run compile", "test": "gulp copy-systemTest-resources && node ./out/test/index.js", "prettify-md": "node ./cli/index.js", "check-md": "node ./cli/index.js --check" }, "devDependencies": { "@types/mocha": "^9.0.0", "@types/node": "^16.6.2", "@types/vscode": "^1.59.0", "glob": "^7.1.7", "gulp": "^4.0.2", "gulp-merge-json": "^2.1.1", "mocha": "^9.0.0", "typemoq": "^2.1.0", "typescript": "^4.3.5", "vscode-test": "^1.6.1" }, "license": "MIT", "bin": { "markdown-table-prettify": "./cli/index.js" }, "files": [ "/cli", "/src" ] }