hashnode-md
Version:
CLI tool to export Hashnode blog posts to Markdown format
50 lines (49 loc) • 1.11 kB
JSON
{
"name": "hashnode-md",
"version": "1.0.1",
"description": "CLI tool to export Hashnode blog posts to Markdown format",
"author": "Elvis Brevi",
"license": "MIT",
"main": "dist/index.js",
"type": "module",
"keywords": [
"hashnode",
"markdown",
"blog",
"export",
"export blog",
"export hashnode blog",
"cli"
],
"devDependencies": {
"@types/bun": "latest",
"typescript": "^5.0.0"
},
"bin": {
"hashnode-md": "./dist/index.js"
},
"files": [
"dist",
"README.md"
],
"engines": {
"node": ">=14.16"
},
"scripts": {
"build": "bun build ./app/index.ts --outdir ./dist --target node",
"prepublishOnly": "bun run build",
"start": "bun run app/index.ts"
},
"dependencies": {
"@inquirer/input": "^4.1.8",
"@inquirer/select": "^4.1.0"
},
"repository": {
"type": "git",
"url": "https://github.com/elvisbrevi/hashnode-to-markdown"
},
"bugs": {
"url": "https://github.com/elvisbrevi/hashnode-to-markdown/issues"
},
"homepage": "https://github.com/elvisbrevi/hashnode-to-markdown#readme"
}