mdka
Version:
A HTML to Markdown converter that balances conversion quality with runtime efficiency written in Rust
55 lines (54 loc) • 1.1 kB
JSON
{
"name": "mdka",
"version": "2.1.6",
"description": "A HTML to Markdown converter that balances conversion quality with runtime efficiency written in Rust",
"author": "nabbisen",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/nabbisen/mdka-rs.git"
},
"keywords": [
"html",
"markdown",
"html-to-markdown",
"markdown-generator",
"generate-markdown",
"html-parser",
"text",
"document",
"convert",
"converter",
"parser",
"rust",
"napi",
"native-addon"
],
"files": [
"index.js",
"index.d.ts"
],
"main": "index.js",
"types": "index.d.ts",
"napi": {
"binaryName": "mdka",
"package": {
"name": "@mdka/lib"
},
"targets": [
"x86_64-unknown-linux-gnu",
"arm64-apple-darwin",
"x86_64-pc-windows-msvc"
]
},
"devDependencies": {
"@napi-rs/cli": "^3.0.0"
},
"engines": {
"node": ">= 16"
},
"scripts": {
"build": "napi build --platform --release --js index.js --dts index.d.ts",
"test": "node test.js"
}
}