UNPKG

writr

Version:

Markdown Rendering Simplified

98 lines 2.59 kB
{ "name": "writr", "version": "5.0.1", "description": "Markdown Rendering Simplified", "type": "module", "main": "./dist/writr.js", "types": "./dist/writr.d.ts", "exports": { ".": { "types": "./dist/writr.d.ts", "import": "./dist/writr.js" } }, "repository": { "type": "git", "url": "https://github.com/jaredwray/writr.git" }, "author": "Jared Wray <me@jaredwray.com>", "engines": { "node": ">=20" }, "license": "MIT", "keywords": [ "markdown", "html", "renderer", "markdown-to-html", "toc", "table-of-contents", "emoji", "syntax-highlighting", "markdown-processor", "github-flavored-markdown", "gfm", "remark-plugin", "rehype-plugin", "markdown-editor", "content-management", "documentation-tool", "blogging", "markdown-extension", "seo-friendly", "markdown-anchors", "remark", "rehype", "react", "react-component", "react-markdown", "markdown-to-react" ], "dependencies": { "cacheable": "^2.2.0", "hashery": "^1.2.0", "hookified": "^1.13.0", "html-react-parser": "^5.2.10", "js-yaml": "^4.1.1", "react": "^19.2.0", "rehype-highlight": "^7.0.2", "rehype-katex": "^7.0.1", "rehype-slug": "^6.0.0", "rehype-stringify": "^10.0.1", "remark-emoji": "^5.0.2", "remark-gfm": "^4.0.1", "remark-github-blockquote-alert": "^2.0.0", "remark-math": "^6.0.0", "remark-mdx": "^3.1.1", "remark-parse": "^11.0.0", "remark-rehype": "^11.1.2", "remark-toc": "^9.0.0", "unified": "^11.0.5" }, "devDependencies": { "@biomejs/biome": "^2.3.7", "@types/js-yaml": "^4.0.9", "@types/node": "^24.10.1", "@types/react": "^19.2.7", "@vitest/coverage-v8": "^4.0.14", "docula": "^0.31.1", "rimraf": "^6.1.2", "tsup": "^8.5.1", "typescript": "^5.9.3", "vitest": "^4.0.14" }, "files": [ "dist", "README.md", "LICENSE" ], "scripts": { "clean": "rimraf ./dist ./coverage ./node_modules ./pnpm-lock.yaml ./site/README.md ./site/dist", "build": "rimraf ./dist && tsup src/writr.ts --format esm --dts --clean", "lint": "biome check --write --error-on-warnings", "test": "pnpm lint && vitest run --coverage", "test:ci": "biome check --error-on-warnings && vitest run --coverage", "website:build": "rimraf ./site/README.md ./site/dist && npx docula build -s ./site -o ./site/dist", "website:serve": "rimraf ./site/README.md ./site/dist && npx docula serve -s ./site -o ./site/dist" } }