-
-
Notifications
You must be signed in to change notification settings - Fork 8.9k
/
Copy pathpackage.json
37 lines (37 loc) · 941 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
{
"name": "@docusaurus/utils-build",
"version": "2.0.0-beta.15",
"description": "Build and pack docusaurus plugins in one command",
"license": "MIT",
"type": "module",
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/facebook/docusaurus.git",
"directory": "packages/docusaurus-utils-build"
},
"bin": {
"docusaurus-plugin": "bin/index.js"
},
"scripts": {
"build": "tsc"
},
"dependencies": {
"@babel/core": "^7.17.5",
"@babel/plugin-transform-modules-commonjs": "^7.16.8",
"@babel/preset-typescript": "^7.16.7",
"@docusaurus/logger": "2.0.0-beta.15",
"@docusaurus/utils": "2.0.0-beta.15",
"chokidar": "^3.5.2",
"commander": "^5.1.0",
"lodash": "^4.17.21",
"prettier": "^2.5.1",
"shelljs": "^0.8.5",
"typescript": "^4.5.5"
},
"devDependencies": {
"@docusaurus/types": "2.0.0-beta.15"
}
}