Files
smartmarkdown/package.json
T
2026-05-01 21:57:01 +00:00

75 lines
1.7 KiB
JSON

{
"name": "@push.rocks/smartmarkdown",
"version": "3.1.0",
"private": false,
"description": "Enhances Markdown file handling with parsing, conversion, and frontmatter support.",
"exports": {
".": "./dist_ts/index.js"
},
"main": "dist_ts/index.js",
"typings": "dist_ts/index.d.ts",
"type": "module",
"author": "Task Venture Capital GmbH <hello@task.vc>",
"license": "MIT",
"scripts": {
"test": "tstest test/",
"build": "tsbuild --web",
"buildDocs": "tsdoc"
},
"devDependencies": {
"@git.zone/tsbuild": "^4.4.0",
"@git.zone/tsdoc": "^2.0.3",
"@git.zone/tstest": "^3.6.3",
"@types/mdast": "^4.0.4",
"@types/node": "^25.6.0"
},
"dependencies": {
"@push.rocks/smartyaml": "^3.0.5",
"@types/turndown": "^5.0.6",
"remark-frontmatter": "^5.0.0",
"remark-gfm": "^4.0.1",
"remark-html": "^16.0.1",
"remark-parse": "^11.0.0",
"remark-stringify": "^11.0.0",
"turndown": "^7.2.4",
"turndown-plugin-gfm": "^1.0.2",
"unified": "^11.0.5"
},
"files": [
"ts/**/*",
"ts_web/**/*",
"dist/**/*",
"dist_*/**/*",
"dist_ts/**/*",
"dist_ts_web/**/*",
"assets/**/*",
"cli.js",
".smartconfig.json",
"license",
"npmextra.json",
"readme.md"
],
"browserslist": [
"last 1 chrome versions"
],
"keywords": [
"markdown",
"html conversion",
"markdown parsing",
"frontmatter",
"remark",
"unified",
"turndown",
"YAML",
"plugin system",
"text processing",
"documentation",
"content management"
],
"homepage": "https://code.foss.global/push.rocks/smartmarkdown",
"repository": {
"type": "git",
"url": "https://code.foss.global/push.rocks/smartmarkdown.git"
}
}