-
-
Notifications
You must be signed in to change notification settings - Fork 10k
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.83 KB
/
Copy pathpackage.json
File metadata and controls
62 lines (62 loc) · 1.83 KB
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "@docusaurus/theme-common",
"version": "3.0.0-alpha.0",
"description": "Common code for Docusaurus themes.",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"sideEffects": [
"lib/components/Details/*",
"*.css"
],
"exports": {
".": "./lib/index.js",
"./internal": "./lib/internal.js",
"./Details": "./lib/components/Details/index.js"
},
"scripts": {
"build": "tsc && node ../../admin/scripts/copyUntypedFiles.js",
"watch": "run-p -c copy:watch build:watch",
"build:watch": "tsc --watch",
"copy:watch": "node ../../admin/scripts/copyUntypedFiles.js --watch",
"removeThemeInternalReexport": "node removeThemeInternalReexport.mjs"
},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/facebook/docusaurus.git",
"directory": "packages/docusaurus-theme-common"
},
"license": "MIT",
"dependencies": {
"@docusaurus/mdx-loader": "^3.0.0-alpha.0",
"@docusaurus/module-type-aliases": "^3.0.0-alpha.0",
"@docusaurus/plugin-content-blog": "^3.0.0-alpha.0",
"@docusaurus/plugin-content-docs": "^3.0.0-alpha.0",
"@docusaurus/plugin-content-pages": "^3.0.0-alpha.0",
"@docusaurus/utils": "^3.0.0-alpha.0",
"@types/history": "^4.7.11",
"@types/react": "*",
"@types/react-router-config": "*",
"clsx": "^1.2.1",
"parse-numeric-range": "^1.3.0",
"prism-react-renderer": "^1.3.5",
"tslib": "^2.4.1",
"use-sync-external-store": "^1.2.0",
"utility-types": "^3.10.0"
},
"devDependencies": {
"@docusaurus/core": "^3.0.0-alpha.0",
"@docusaurus/types": "^3.0.0-alpha.0",
"fs-extra": "^11.1.0",
"lodash": "^4.17.21"
},
"peerDependencies": {
"react": "^16.8.4 || ^17.0.0",
"react-dom": "^16.8.4 || ^17.0.0"
},
"engines": {
"node": ">=16.14"
}
}