UNPKG

@jhuix/showdowns

Version:

A lib that make markdown to html with some extensions of showdown.js.

97 lines (96 loc) 3.03 kB
{ "name": "@jhuix/showdowns", "version": "0.6.13", "description": "A lib that make markdown to html with some extensions of showdown.js.", "main": "dist/showdowns.min.js", "browser": "dist/showdowns.min.js", "module": "dist/showdowns.core.min.js", "unpkg": "dist/showdowns.min.js", "style": "dist/showdowns.min.css", "scripts": { "build": "npm run build:release && npm run build:umd && npm run build:cjs", "build:umd": "rollup -c --bundleConfigAsCjs", "build:umd:min": "rollup -c --bundleConfigAsCjs --environment MIN", "build:cjs": "rollup -c --bundleConfigAsCjs --environment TARGET:cjs", "build:cjs:min": "rollup -c --bundleConfigAsCjs --environment MIN,TARGET:cjs", "build:release": "npm run clean && npm run build:umd:min && npm run build:cjs:min && npm run build:demo", "build:demo": "rimraf docs && rollup -c --bundleConfigAsCjs --environment DEMO,MIN", "build:dev": "npm run build:umd && npm run build:cjs", "prepublishOnly": "npm run build:release", "clean": "rimraf dist" }, "repository": { "type": "git", "url": "git+https://github.com/jhuix/showdowns.git" }, "keywords": [ "showdowns", "showdown", "markdown", "html", "mermaid", "plantuml", "katex", "toc" ], "files": [ "dist", "demo", "logo.png", "favicon.ico" ], "author": "Jhuix [Hui Jin] <jhuix0117@gmail.com>", "license": "MIT", "homepage": "https://github.com/jhuix/showdowns#readme", "private": false, "devDependencies": { "@babel/core": "^7.24.9", "@babel/plugin-external-helpers": "^7.24.7", "@babel/preset-env": "^7.24.8", "@rollup/plugin-babel": "^6.0.4", "@rollup/plugin-commonjs": "^26.0.1", "@rollup/plugin-inject": "^5.0.5", "@rollup/plugin-json": "^6.1.0", "@rollup/plugin-node-resolve": "^15.2.3", "@rollup/plugin-replace": "^5.0.7", "@rollup/plugin-terser": "^0.4.4", "@types/rollup-plugin-node-builtins": "^2.1.5", "@types/rollup-plugin-node-globals": "^1.4.4", "autoprefixer": "^10.4.19", "cssnano": "^7.0.4", "eslint": "^9.29.0", "less": "^4.2.0", "postcss-banner": "^4.0.1", "postcss-nested": "^6.2.0", "postcss-simple-vars": "^7.0.1", "rimraf": "^6.0.1", "rollup": "^4.19.0", "rollup-plugin-copy": "^3.5.0", "rollup-plugin-node-builtins": "^2.1.2", "rollup-plugin-node-globals": "^1.4.0", "rollup-plugin-postcss": "^4.0.2", "semver": "^7.7.2" }, "dependencies": { "@rokt33r/js-sequence-diagrams": "^2.0.6-2", "@viz-js/viz": "^3.14.0", "abcjs": "^6.5.1", "echarts": "^5.6.0", "flowchart.js": "^1.18.0", "katex": "^0.16.22", "mermaid": "^11.6.0", "railroad-diagrams": "^1.0.0", "raphael": "^2.3.0", "showdown": "^2.1.0", "snapsvg": "^0.5.1", "underscore": "^1.13.7", "vega": "^6.1.2", "vega-embed": "^7.0.2", "vega-lite": "^6.1.0", "wavedrom": "^3.5.0", "webfontloader": "^1.6.28" }, "publishConfig": { "access": "public" } }