UNPKG

@kingsword/node-html-markdown

Version:

Fast HTML to markdown cross-compiler, compatible with both node and the browser

99 lines 2.22 kB
{ "name": "@kingsword/node-html-markdown", "description": "Fast HTML to markdown cross-compiler, compatible with both node and the browser", "version": "1.3.3", "main": "dist/index.js", "module": "dist/index.js", "types": "dist/index.d.ts", "files": [ "README.md", "CHANGELOG.md", "dist" ], "keywords": [ "html", "markdown", "converter", "md", "html5", "node-html-parser", "fast-html-parser", "turndown" ], "author": { "name": "Kingsword kingsword09 <kingsword09@gmail.com>", "url": "https://github.com/kingsword09/node-html-markdown" }, "repository": { "type": "git", "url": "git+ssh://git@github.com/kingsword09/node-html-markdown.git" }, "bugs": { "url": "https://github.com/kingsword09/node-html-markdown/issues" }, "homepage": "https://github.com/kingsword09/node-html-markdown#readme", "license": "MIT", "engines": { "node": ">=20.0.0" }, "dependencies": { "node-html-parser": "^7.0.1" }, "devDependencies": { "@types/node": "^22.15.29", "rimraf": "^6.0.1", "standard-version": "^9.5.0", "ts-node": "^10.9.2", "ts-patch": "^3.3.0", "typescript": "^5.8.3", "undici-types": "^7.10.0" }, "standard-version": { "types": [ { "type": "feat", "section": "Features" }, { "type": "fix", "section": "Fixes" }, { "type": "chore", "hidden": true }, { "type": "docs", "hidden": true }, { "type": "style", "hidden": true }, { "type": "refactor", "hidden": true }, { "type": "perf", "hidden": true }, { "type": "test", "hidden": true } ] }, "publishConfig": { "access": "public" }, "scripts": { "compile": "tsc", "build": "pnpm run clean && pnpm run compile", "clean": "npx -y rimraf coverage dist **/*.tsbuildinfo", "------------- ": "-------------", "benchmark": "cd benchmark && pnpm run benchmark quick", "benchmark:large": "cd benchmark && pnpm run benchmark", "------------- ": "-------------" } }