Files
smartmarkdown/package.json

68 lines
1.6 KiB
JSON
Raw Permalink Normal View History

2018-09-22 21:58:33 +02:00
{
2023-07-10 10:16:25 +02:00
"name": "@push.rocks/smartmarkdown",
2024-01-19 21:10:15 +01:00
"version": "3.0.3",
2018-09-23 00:45:18 +02:00
"private": false,
2024-04-14 17:57:02 +02:00
"description": "Enhances Markdown file handling with parsing, conversion, and frontmatter support.",
2021-04-12 09:20:28 +00:00
"main": "dist_ts/index.js",
"typings": "dist_ts/index.d.ts",
2022-05-19 09:36:59 +02:00
"type": "module",
2018-09-22 21:58:33 +02:00
"author": "Lossless GmbH",
"license": "MIT",
"scripts": {
"test": "tstest test/",
2024-01-19 21:10:14 +01:00
"build": "tsbuild --web --allowimplicitany"
2018-09-22 21:58:33 +02:00
},
"devDependencies": {
2024-01-19 21:09:27 +01:00
"@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"
2018-09-22 21:58:33 +02:00
},
2018-09-23 00:21:31 +02:00
"dependencies": {
2024-01-19 21:09:27 +01:00
"@push.rocks/smartyaml": "^2.0.5",
2021-10-04 13:35:20 +02:00
"@types/turndown": "^5.0.1",
2024-01-19 21:09:27 +01:00
"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",
2021-10-04 13:35:20 +02:00
"turndown": "^7.1.1",
2022-05-20 16:03:35 +02:00
"turndown-plugin-gfm": "^1.0.2",
2024-01-19 21:09:27 +01:00
"unified": "^11.0.4"
},
"files": [
2020-01-18 16:55:29 +00:00
"ts/**/*",
"ts_web/**/*",
"dist/**/*",
2021-04-12 09:20:28 +00:00
"dist_*/**/*",
"dist_ts/**/*",
2020-01-18 16:55:29 +00:00
"dist_ts_web/**/*",
"assets/**/*",
"cli.js",
"npmextra.json",
"readme.md"
2021-04-12 09:20:28 +00:00
],
"browserslist": [
"last 1 chrome versions"
2024-04-14 17:57:02 +02:00
],
"keywords": [
"markdown",
"html conversion",
"markdown parsing",
"frontmatter",
"remark",
"unified",
"turndown",
"YAML",
"plugin system",
"text processing",
"documentation",
"content management"
2024-05-29 14:14:38 +02:00
],
"homepage": "https://code.foss.global/push.rocks/smartmarkdown",
"repository": {
"type": "git",
"url": "https://code.foss.global/push.rocks/smartmarkdown.git"
}
2024-04-14 17:57:02 +02:00
}