mirror of
https://github.com/facebook/docusaurus.git
synced 2025-08-04 09:19:16 +02:00
* stable createData namespacing + second-blog dogfooding * Docs: support multi-instance + make community docs a separate instance * tests: add 2nd docs instance to versioned site * fix docs version cli tests * fix docs versioning cli * typo * team: add link to my site * better extendCli integration * fix metadata tests * tests for versioned site with second docs instance * move some validation code to utils-validation * fix missing dependency * fix bad compiled output due to importing constants in ./client folder * make docs tests easier to maintain * refactors * prevent lodash imports in client bundle * redirect old community docs to new urls
25 lines
529 B
JSON
25 lines
529 B
JSON
{
|
|
"name": "@docusaurus/utils-validation",
|
|
"version": "2.0.0-alpha.61",
|
|
"description": "Node validation utility functions for Docusaurus packages",
|
|
"main": "./lib/index.js",
|
|
"types": "./lib/index.d.ts",
|
|
"scripts": {
|
|
"build": "tsc",
|
|
"watch": "tsc --watch"
|
|
},
|
|
"publishConfig": {
|
|
"access": "public"
|
|
},
|
|
"license": "MIT",
|
|
"devDependencies": {
|
|
"@types/hapi__joi": "^17.1.2"
|
|
},
|
|
"dependencies": {
|
|
"@hapi/joi": "17.1.1",
|
|
"chalk": "^3.0.0"
|
|
},
|
|
"engines": {
|
|
"node": ">=10.15.1"
|
|
}
|
|
}
|