UNPKG

@mfyz/markdown-renderer-with-custom-directives

Version:
51 lines (50 loc) 1.25 kB
{ "name": "@mfyz/markdown-renderer-with-custom-directives", "version": "1.0.7", "description": "Zero-dependency markdown renderer with custom directives", "main": "dist/index.cjs.js", "module": "dist/index.esm.js", "browser": "dist/index.browser.js", "exports": { ".": { "import": "./dist/index.esm.js", "require": "./dist/index.cjs.js", "default": "./dist/index.cjs.js" } }, "files": [ "dist", "src" ], "scripts": { "test": "node src/index.test.js", "test:exports": "npm run build && node postbuild-test-exports-commonjs.js && node --experimental-vm-modules postbuild-test-exports-esm.mjs", "build": "node build.js", "prepare": "husky install", "prepack": "npm run build" }, "keywords": [ "markdown", "renderer", "custom-directives", "vanilla-js", "zero-dependency" ], "author": "mfyz", "license": "MIT", "repository": { "type": "git", "url": "https://github.com/mfyz/markdown-editor-with-custom-directives" }, "devDependencies": { "esbuild": "^0.25.0", "husky": "^9.0.11", "lint-staged": "^15.2.2" }, "lint-staged": { "vanilla-renderer/src/**/*.js": [ "npm run build", "npm test" ] } }