2020-07-24 06:52:16 -04:00
|
|
|
{
|
|
|
|
|
"name": "@docusaurus/migrate",
|
2023-09-15 13:44:35 -04:00
|
|
|
"version": "3.0.0-beta.0",
|
2021-03-22 13:00:32 -04:00
|
|
|
"description": "A CLI tool to migrate from older versions of Docusaurus.",
|
2020-07-24 06:52:16 -04:00
|
|
|
"license": "MIT",
|
|
|
|
|
"engines": {
|
2023-09-28 10:45:25 -04:00
|
|
|
"node": ">=18.0"
|
2020-07-24 06:52:16 -04:00
|
|
|
},
|
|
|
|
|
"scripts": {
|
2022-05-17 03:21:44 -04:00
|
|
|
"build": "tsc --build",
|
2022-05-18 07:18:32 -04:00
|
|
|
"watch": "tsc --build --watch"
|
2020-07-24 06:52:16 -04:00
|
|
|
},
|
2020-10-21 09:05:01 -04:00
|
|
|
"repository": {
|
|
|
|
|
"type": "git",
|
|
|
|
|
"url": "https://github.com/facebook/docusaurus.git",
|
|
|
|
|
"directory": "packages/docusaurus-migrate"
|
|
|
|
|
},
|
2020-07-24 06:52:16 -04:00
|
|
|
"publishConfig": {
|
|
|
|
|
"access": "public"
|
|
|
|
|
},
|
|
|
|
|
"bin": {
|
2022-02-16 10:00:35 -05:00
|
|
|
"docusaurus-migrate": "bin/index.mjs"
|
2020-07-24 06:52:16 -04:00
|
|
|
},
|
|
|
|
|
"dependencies": {
|
2023-07-16 11:44:17 -04:00
|
|
|
"@babel/core": "^7.22.9",
|
|
|
|
|
"@babel/preset-env": "^7.22.9",
|
2023-09-15 13:44:35 -04:00
|
|
|
"@docusaurus/logger": "3.0.0-beta.0",
|
|
|
|
|
"@docusaurus/utils": "3.0.0-beta.0",
|
2022-02-18 22:47:44 -05:00
|
|
|
"@mapbox/hast-util-to-jsx": "^2.0.0",
|
2022-04-09 00:36:10 -04:00
|
|
|
"color": "^4.2.3",
|
2020-07-24 06:52:16 -04:00
|
|
|
"commander": "^5.1.0",
|
2023-07-16 11:44:17 -04:00
|
|
|
"fs-extra": "^11.1.1",
|
2020-07-24 06:52:16 -04:00
|
|
|
"hast-util-to-string": "^1.0.4",
|
2023-07-16 11:44:17 -04:00
|
|
|
"html-tags": "^3.3.1",
|
2023-01-10 15:22:19 -05:00
|
|
|
"jscodeshift": "^0.14.0",
|
2020-07-24 06:52:16 -04:00
|
|
|
"rehype-parse": "^7.0.1",
|
2023-07-16 11:44:17 -04:00
|
|
|
"remark-parse": "^8.0.3",
|
|
|
|
|
"remark-stringify": "^8.1.1",
|
|
|
|
|
"semver": "^7.5.4",
|
|
|
|
|
"tslib": "^2.6.0",
|
2023-04-21 13:48:57 -04:00
|
|
|
"unified": "^10.1.2",
|
2022-03-29 23:05:50 -04:00
|
|
|
"unist-util-visit": "^2.0.3"
|
2020-07-24 06:52:16 -04:00
|
|
|
},
|
|
|
|
|
"devDependencies": {
|
2022-02-02 00:00:31 -05:00
|
|
|
"@types/color": "^3.0.3",
|
2023-01-10 13:23:16 -05:00
|
|
|
"@types/jscodeshift": "^0.11.6"
|
2020-07-24 06:52:16 -04:00
|
|
|
}
|
|
|
|
|
}
|