-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.31 KB
/
Copy pathpackage.json
File metadata and controls
83 lines (83 loc) · 2.31 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "base14-docs",
"version": "0.0.2",
"private": true,
"scripts": {
"docusaurus": "docusaurus",
"start": "docusaurus start",
"build": "docusaurus build",
"swizzle": "docusaurus swizzle",
"deploy": "docusaurus deploy",
"clear": "docusaurus clear",
"serve": "docusaurus serve",
"write-translations": "docusaurus write-translations",
"write-heading-ids": "docusaurus write-heading-ids",
"typecheck": "tsc",
"markdownlint": "markdownlint '**/*.md' -f --ignore node_modules",
"check:content": "node scripts/check-facts.mjs",
"check": "npm run typecheck && npm run markdownlint && npm run check:content && npm run build",
"test": "echo \"No tests configured yet\" && exit 0",
"postinstall": "patch-package"
},
"dependencies": {
"@docusaurus/core": "^3.10.2",
"@docusaurus/plugin-client-redirects": "^3.10.2",
"@docusaurus/preset-classic": "^3.10.2",
"@easyops-cn/docusaurus-search-local": "^0.55.1",
"@mdx-js/react": "^3.0.0",
"clsx": "^2.0.0",
"prism-react-renderer": "^2.3.0",
"react": "^19.2.0",
"react-dom": "^19.2.0"
},
"devDependencies": {
"@docusaurus/module-type-aliases": "^3.10.2",
"@docusaurus/tsconfig": "^3.10.2",
"@docusaurus/types": "^3.10.2",
"docusaurus-plugin-llms": "^0.5.1",
"gray-matter": "^4.0.3",
"markdownlint-cli": "^0.49.1",
"patch-package": "^8.0.1",
"typescript": "^5.9.3"
},
"browserslist": {
"production": [
">0.5%",
"not dead",
"not op_mini all"
],
"development": [
"last 3 chrome version",
"last 3 firefox version",
"last 5 safari version"
]
},
"overrides": {
"webpack-dev-server": "^5.2.6",
"minimatch": "^10.2.5",
"serialize-javascript": "^7.0.5",
"brace-expansion": "^5.0.9",
"picomatch": "^4.0.4",
"node-forge": "^1.4.0",
"yaml": "^2.8.3",
"uuid": "^14.0.0",
"qs": "^6.15.2",
"http-proxy-middleware": "^3.0.7",
"postcss": "^8.5.23",
"shell-quote": "^1.8.5",
"svgo": "^3.3.4",
"linkify-it": "^5.0.2",
"fast-uri": "^3.1.5",
"body-parser": "^1.20.6",
"js-yaml@^3": "^3.15.1",
"js-yaml@^4": "^4.3.1",
"nanoid": "^3.3.18",
"undici": "^7.29.0",
"webpack-bundle-analyzer": {
"ws": "^7.5.11"
}
},
"engines": {
"node": ">=24.0"
}
}