llm-md
Version:
Convert JSON to Markdown optimized for LLM consumption
58 lines (57 loc) • 1.19 kB
JSON
{
"name": "llm-md",
"version": "1.0.0",
"description": "Convert JSON to Markdown optimized for LLM consumption",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"llm-md": "./dist/cli.js"
},
"scripts": {
"build": "tsc",
"test": "jest",
"test:coverage": "jest --coverage",
"lint": "eslint src/**/*.ts",
"prepublishOnly": "npm run build"
},
"keywords": [
"llm",
"markdown",
"json",
"converter",
"ai",
"gpt",
"claude",
"json-to-markdown"
],
"author": "",
"license": "MIT",
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/js-yaml": "^4.0.9",
"@types/minimist": "^1.2.5",
"@types/node": "^20.11.19",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"eslint": "^8.56.0",
"jest": "^29.7.0",
"ts-jest": "^29.1.2",
"typescript": "^5.3.3"
},
"dependencies": {
"js-yaml": "^4.1.0",
"minimist": "^1.2.8"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"engines": {
"node": ">=16.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/mslavov/llm-md.git"
}
}