mirror of
https://github.com/facebook/docusaurus.git
synced 2025-12-26 01:33:02 +00:00
* refactor(v2): move `reportMessage` from `core/src/server/utils` to `utils` package * feat(v2): handle broken markdown links by using onBrokenLinks prop from siteconfig * feat(v2): add a new site config prop called `onBrokenMarkdownLinks` works like onBrokenLinks, but only for markdown links * feat(v2): add `onBrokenMarkdownLinks` to API docs * some changes regarding test issues after adding `onBrokenMarkdownLink` * Update website/versioned_docs/version-2.0.0-alpha.66/api/docusaurus.config.js.md Co-authored-by: Sébastien Lorber <slorber@users.noreply.github.com>
34 lines
801 B
JSON
34 lines
801 B
JSON
{
|
|
"name": "@docusaurus/utils",
|
|
"version": "2.0.0-alpha.66",
|
|
"description": "Node utility functions for Docusaurus packages",
|
|
"main": "./lib/index.js",
|
|
"types": "./lib/index.d.ts",
|
|
"scripts": {
|
|
"build": "tsc",
|
|
"watch": "tsc --watch"
|
|
},
|
|
"publishConfig": {
|
|
"access": "public"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/facebook/docusaurus.git",
|
|
"directory": "packages/docusaurus-utils"
|
|
},
|
|
"license": "MIT",
|
|
"dependencies": {
|
|
"@docusaurus/types": "^2.0.0-alpha.66",
|
|
"chalk": "^3.0.0",
|
|
"escape-string-regexp": "^2.0.0",
|
|
"fs-extra": "^8.1.0",
|
|
"gray-matter": "^4.0.2",
|
|
"lodash.camelcase": "^4.3.0",
|
|
"lodash.kebabcase": "^4.1.1",
|
|
"resolve-pathname": "^3.0.0"
|
|
},
|
|
"engines": {
|
|
"node": ">=10.15.1"
|
|
}
|
|
}
|