UNPKG

moxygen

Version:

Doxygen XML to Markdown converter

61 lines (60 loc) 1.32 kB
{ "name": "moxygen", "version": "2.1.12", "description": "Doxygen XML to Markdown converter", "type": "module", "main": "dist/index.js", "types": "dist/index.d.ts", "exports": { ".": { "types": "./dist/index.d.ts", "import": "./dist/index.js" } }, "bin": { "moxygen": "dist/cli.js" }, "files": [ "dist", "templates" ], "scripts": { "build": "tsc", "prepare": "npm run build", "dev": "tsc --watch", "test": "vitest run", "test:watch": "vitest", "lint": "tsc --noEmit", "prepublishOnly": "npm run build", "example": "npm run build && node dist/cli.js --groups --pages --anchors --output=example/doc/api-%s.md example/xml" }, "repository": { "type": "git", "url": "git+https://github.com/sourcey/moxygen.git" }, "homepage": "https://0state.com/moxygen", "keywords": [ "doxygen", "markdown", "documentation", "generator", "api-docs" ], "author": "Kam Low", "license": "MIT", "engines": { "node": ">=20" }, "dependencies": { "commander": "^13.1.0", "handlebars": "^4.7.9", "xml2js": "^0.6.2" }, "devDependencies": { "@types/node": "^20.17.0", "@types/xml2js": "^0.4.14", "sourcey": "^3.6.0", "typescript": "^5.7.0", "vitest": "^3.0.0" } }