mirror of
https://github.com/facebook/docusaurus.git
synced 2025-08-04 09:19:16 +02:00
* each TS plugin should export option types + preset export option / themeConfig types + remove TS typechecking for the bootstrap theme * each TS plugin should export option types + preset export option / themeConfig types + remove TS typechecking for the bootstrap theme * fix remaining TS errors * fix remaining TS errors * TS fix * Add JSDoc type annotations to init templates and TS docs * missing title char
46 lines
1.2 KiB
JSON
46 lines
1.2 KiB
JSON
{
|
|
"name": "@docusaurus/plugin-content-blog",
|
|
"version": "2.0.0-beta.5",
|
|
"description": "Blog plugin for Docusaurus.",
|
|
"main": "lib/index.js",
|
|
"types": "src/plugin-content-blog.d.ts",
|
|
"scripts": {
|
|
"build": "tsc",
|
|
"watch": "tsc --watch"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/facebook/docusaurus.git",
|
|
"directory": "packages/docusaurus-plugin-content-blog"
|
|
},
|
|
"publishConfig": {
|
|
"access": "public"
|
|
},
|
|
"license": "MIT",
|
|
"dependencies": {
|
|
"@docusaurus/core": "2.0.0-beta.5",
|
|
"@docusaurus/mdx-loader": "2.0.0-beta.5",
|
|
"@docusaurus/types": "2.0.0-beta.5",
|
|
"@docusaurus/utils": "2.0.0-beta.5",
|
|
"@docusaurus/utils-validation": "2.0.0-beta.5",
|
|
"chalk": "^4.1.1",
|
|
"escape-string-regexp": "^4.0.0",
|
|
"feed": "^4.2.2",
|
|
"fs-extra": "^10.0.0",
|
|
"globby": "^11.0.2",
|
|
"js-yaml": "^4.0.0",
|
|
"loader-utils": "^2.0.0",
|
|
"lodash": "^4.17.20",
|
|
"reading-time": "^1.3.0",
|
|
"remark-admonitions": "^1.2.1",
|
|
"tslib": "^2.2.0",
|
|
"webpack": "^5.40.0"
|
|
},
|
|
"peerDependencies": {
|
|
"react": "^16.8.4 || ^17.0.0",
|
|
"react-dom": "^16.8.4 || ^17.0.0"
|
|
},
|
|
"engines": {
|
|
"node": ">=12.13.0"
|
|
}
|
|
}
|