mirror of
https://github.com/facebook/docusaurus.git
synced 2025-12-31 23:54:25 +00:00
* feat: add estimated reading time to blog posts * docs: add showReadingTime on plugin docs * test: update plugin-content-blog tests to cover readingTime * Update index.js * Update using-plugins.md * Update index.js Co-authored-by: Yangshun Tay <tay.yang.shun@gmail.com>
35 lines
770 B
JSON
35 lines
770 B
JSON
{
|
|
"name": "@docusaurus/plugin-content-blog",
|
|
"version": "2.0.0-alpha.50",
|
|
"description": "Blog plugin for Docusaurus",
|
|
"main": "lib/index.js",
|
|
"scripts": {
|
|
"tsc": "tsc"
|
|
},
|
|
"publishConfig": {
|
|
"access": "public"
|
|
},
|
|
"license": "MIT",
|
|
"devDependencies": {
|
|
"@docusaurus/types": "^2.0.0-alpha.50"
|
|
},
|
|
"dependencies": {
|
|
"@docusaurus/mdx-loader": "^2.0.0-alpha.50",
|
|
"@docusaurus/utils": "^2.0.0-alpha.50",
|
|
"feed": "^4.1.0",
|
|
"fs-extra": "^8.1.0",
|
|
"globby": "^10.0.1",
|
|
"loader-utils": "^1.2.3",
|
|
"lodash.kebabcase": "^4.1.1",
|
|
"reading-time": "^1.2.0"
|
|
},
|
|
"peerDependencies": {
|
|
"@docusaurus/core": "^2.0.0",
|
|
"react": "^16.8.4",
|
|
"react-dom": "^16.8.4"
|
|
},
|
|
"engines": {
|
|
"node": ">=10.9.0"
|
|
}
|
|
}
|