mirror of
https://github.com/facebook/docusaurus.git
synced 2025-12-26 01:33:02 +00:00
* chore(v2): add flow setup * nits * fix * add flow-typed * ignore compiled library * fix error * fix typing * fix module name mapper * setup for @docusaurus/core * dont try remove type without @flow * fix can't find @docusaurus/utils * fix test * remove obscure relative paths * more refactoring * add typing for server/load/theme.js * no need to ship .flow source
24 lines
666 B
JSON
24 lines
666 B
JSON
{
|
|
"name": "@docusaurus/utils",
|
|
"version": "2.0.0-alpha.13",
|
|
"description": "Node utility functions for Docusaurus packages",
|
|
"main": "lib/index.js",
|
|
"publishConfig": {
|
|
"access": "public"
|
|
},
|
|
"scripts": {
|
|
"prepublish": "yarn run build",
|
|
"build": "yarn run build:clean && yarn run build:lib",
|
|
"build:clean": "rimraf lib",
|
|
"build:lib": "flow-remove-types -q -x '.js,.css,.ejs' src --out-dir lib --ignore '/__tests__/'",
|
|
"build:watch": "watch \"yarn build\" src"
|
|
},
|
|
"license": "MIT",
|
|
"dependencies": {
|
|
"escape-string-regexp": "^1.0.5",
|
|
"front-matter": "^3.0.1",
|
|
"fs-extra": "^7.0.0",
|
|
"lodash": "^4.17.11"
|
|
}
|
|
}
|