smartmarkdown/package.json

50 lines
1.2 KiB
JSON
Raw Permalink Normal View History

2018-09-22 19:58:33 +00:00
{
2023-07-10 08:16:25 +00:00
"name": "@push.rocks/smartmarkdown",
2024-01-19 20:09:28 +00:00
"version": "3.0.2",
2018-09-22 22:45:18 +00:00
"private": false,
2018-09-22 19:58:33 +00:00
"description": "do more with markdown files",
2021-04-12 09:20:28 +00:00
"main": "dist_ts/index.js",
"typings": "dist_ts/index.d.ts",
2022-05-19 07:36:59 +00:00
"type": "module",
2018-09-22 19:58:33 +00:00
"author": "Lossless GmbH",
"license": "MIT",
"scripts": {
"test": "tstest test/",
2022-05-19 11:42:28 +00:00
"build": "tsbuild --web --allowimplicitany --skiplibcheck"
2018-09-22 19:58:33 +00:00
},
"devDependencies": {
2024-01-19 20:09:27 +00: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 19:58:33 +00:00
},
2018-09-22 22:21:31 +00:00
"dependencies": {
2024-01-19 20:09:27 +00:00
"@push.rocks/smartyaml": "^2.0.5",
2021-10-04 11:35:20 +00:00
"@types/turndown": "^5.0.1",
2024-01-19 20:09:27 +00: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 11:35:20 +00:00
"turndown": "^7.1.1",
2022-05-20 14:03:35 +00:00
"turndown-plugin-gfm": "^1.0.2",
2024-01-19 20:09:27 +00: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-01-19 20:09:28 +00:00
}