mirror of
https://github.com/facebook/docusaurus.git
synced 2025-12-26 09:43:10 +00:00
* doc components initial simplification
* doc components initial simplification
* add docContext test
* Add poc of global data system + use it in the theme
* Revert "doc components initial simplification"
This reverts commit f657b4c4
* revert useless changes
* avoid loosing context on docs switch
* fix docs tests
* fix @generated/globalData ts declaration / es import
* typo
* revert bad commit
* refactor navbar in multiple parts + add navbar item types validation + try to fix remaining merge bugs
* add missing watch mode for plugin debug
* fix docs global data integration, move related hooks to docs plugin + convert to TS
* change versions link label
* fix activeClassName react warning
* improve docs global data system + contextual navbar dropdown
* fix bug preventing the deployment
* refactor the global data system to namespace automatically by plugin name + plugin id
* proper NavbarItem comp
* fix tests
* fix snapshot
* extract theme config schema in separate file + rename navbar links to navbar items
* minor typos
* polish docs components/api
* polish useDocs api surface
* fix the docs version suggestions comp + data
* refactors + add docsClientUtils unit tests
* Add documentation
* typo
* Add check for duplicate plugin ids detection
* multi-instance: createData plugin data should be namespaced by plugin instance id
* remove attempt for multi-instance support
47 lines
1.1 KiB
JSON
47 lines
1.1 KiB
JSON
{
|
|
"name": "@docusaurus/plugin-content-docs",
|
|
"version": "2.0.0-alpha.58",
|
|
"description": "Docs content plugin for Docusaurus",
|
|
"main": "lib/index.js",
|
|
"scripts": {
|
|
"build": "tsc",
|
|
"watch": "tsc --watch"
|
|
},
|
|
"publishConfig": {
|
|
"access": "public"
|
|
},
|
|
"license": "MIT",
|
|
"devDependencies": {
|
|
"@docusaurus/module-type-aliases": "^2.0.0-alpha.58",
|
|
"commander": "^5.0.0",
|
|
"picomatch": "^2.1.1",
|
|
"@types/hapi__joi": "^17.1.2"
|
|
},
|
|
"dependencies": {
|
|
"@docusaurus/mdx-loader": "^2.0.0-alpha.58",
|
|
"@docusaurus/types": "^2.0.0-alpha.58",
|
|
"@docusaurus/utils": "^2.0.0-alpha.58",
|
|
"execa": "^3.4.0",
|
|
"fs-extra": "^8.1.0",
|
|
"globby": "^10.0.1",
|
|
"@hapi/joi": "17.1.1",
|
|
"import-fresh": "^3.2.1",
|
|
"loader-utils": "^1.2.3",
|
|
"lodash.flatmap": "^4.5.0",
|
|
"lodash.groupby": "^4.6.0",
|
|
"lodash.pick": "^4.4.0",
|
|
"lodash.pickby": "^4.6.0",
|
|
"lodash.sortby": "^4.6.0",
|
|
"remark-admonitions": "^1.2.1",
|
|
"shelljs": "^0.8.4"
|
|
},
|
|
"peerDependencies": {
|
|
"@docusaurus/core": "^2.0.0",
|
|
"react": "^16.8.4",
|
|
"react-dom": "^16.8.4"
|
|
},
|
|
"engines": {
|
|
"node": ">=10.15.1"
|
|
}
|
|
}
|