osr-mono/packages/osr-code-bot/tests/md-test/package.json
2025-01-30 00:50:58 +01:00

45 lines
1.1 KiB
JSON

{
"name": "markdown-tree-parser",
"version": "1.0.0",
"description": "A TypeScript utility for parsing markdown files into a hierarchical tree structure",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"mdtree": "dist/cli.js"
},
"scripts": {
"build": "tsc",
"dev": "tsc -p . --watch",
"clean": "rimraf dist",
"prepare": "npm run build",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage"
},
"keywords": [
"markdown",
"parser",
"tree",
"typescript"
],
"dependencies": {
"@types/mdast": "^4.0.4",
"@types/node": "^22.10.2",
"@types/yargs": "^17.0.32",
"mdast-util-from-markdown": "^2.0.2",
"mdast-util-to-string": "^4.0.0",
"remark": "^15.0.1",
"remark-parse": "^11.0.0",
"tslog": "^4.9.3",
"unified": "^11.0.5",
"yargs": "^17.7.2",
"zod": "^3.24.1"
},
"devDependencies": {
"@vitest/coverage-v8": "^2.1.8",
"rimraf": "^3.0.2",
"typescript": "^4.9.5",
"vitest": "^2.1.8"
}
}