smartmarkdown/package.json
2024-05-29 14:14:38 +02:00

68 lines
1.6 KiB
JSON

{
"name": "@push.rocks/smartmarkdown",
"version": "3.0.3",
"private": false,
"description": "Enhances Markdown file handling with parsing, conversion, and frontmatter support.",
"main": "dist_ts/index.js",
"typings": "dist_ts/index.d.ts",
"type": "module",
"author": "Lossless GmbH",
"license": "MIT",
"scripts": {
"test": "tstest test/",
"build": "tsbuild --web --allowimplicitany"
},
"devDependencies": {
"@git.zone/tsbuild": "^2.1.61",
"@git.zone/tsrun": "^1.2.37",
"@git.zone/tstest": "^1.0.86",
"@push.rocks/tapbundle": "^5.0.3",
"@types/node": "^20.11.5"
},
"dependencies": {
"@push.rocks/smartyaml": "^2.0.5",
"@types/turndown": "^5.0.1",
"remark-frontmatter": "^5.0.0",
"remark-gfm": "^4.0.0",
"remark-html": "^16.0.1",
"remark-parse": "^11.0.0",
"remark-stringify": "^11.0.0",
"turndown": "^7.1.1",
"turndown-plugin-gfm": "^1.0.2",
"unified": "^11.0.4"
},
"files": [
"ts/**/*",
"ts_web/**/*",
"dist/**/*",
"dist_*/**/*",
"dist_ts/**/*",
"dist_ts_web/**/*",
"assets/**/*",
"cli.js",
"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"
}
}