markdown-it-kbd
Version:
Markdown-it syntax add-on for keystrokes. Renders [[x]] as <kbd>x</kbd>
67 lines (66 loc) • 1.8 kB
JSON
{
"name": "markdown-it-kbd",
"version": "3.0.0",
"description": "Markdown-it syntax add-on for keystrokes. Renders [[x]] as <kbd>x</kbd>",
"keywords": [
"markdown-it",
"markdown-it-plugin",
"keystroke",
"kbd"
],
"homepage": "https://github.com/jGleitz/markdown-it-kbd",
"license": "MIT",
"author": {
"name": "Joshua Gleitze",
"url": "https://joshuagleitze.de"
},
"files": [
"README.md",
"LICENSE",
"CHANGELOG.md",
"build/index.js",
"build/index.d.ts"
],
"main": "build/index.js",
"types": "build/index.d.ts",
"engines": {
"node": ">=20.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/jGleitz/markdown-it-kbd.git"
},
"scripts": {
"build:transpile": "babel ./src --out-dir build --extensions '.ts'",
"build:types": "tsc --project src",
"build": "npm-run-all build:*",
"lint": "npm-run-all lint:*",
"lint:types": "tsc",
"lint:style": "eslint .",
"prepack": "npm-run-all build:*",
"unittest": "jest",
"test": "npm-run-all lint:* unittest"
},
"devDependencies": {
"@babel/cli": "7.27.0",
"@babel/core": "7.26.10",
"@babel/preset-env": "7.26.9",
"@babel/preset-typescript": "7.27.0",
"@semantic-release/changelog": "6.0.3",
"@semantic-release/git": "10.0.1",
"@types/jest": "29.5.14",
"@types/markdown-it": "13.0.9",
"@types/node": "^22.13.17",
"@typescript-eslint/eslint-plugin": "5.62.0",
"@typescript-eslint/parser": "5.62.0",
"babel-plugin-add-module-exports": "1.0.4",
"eslint": "8.57.1",
"jest": "29.7.0",
"markdown-it": "13.0.2",
"markdown-it-attrs": "4.3.1",
"npm-run-all": "4.1.5",
"semantic-release": "21.1.2",
"typescript": "5.8.2"
},
"packageManager": "npm@11.2.0"
}