-
Notifications
You must be signed in to change notification settings - Fork 82
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 3.07 KB
/
Copy pathpackage.json
File metadata and controls
91 lines (91 loc) · 3.07 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
84
85
86
87
88
89
90
91
{
"name": "@project-hami/website",
"description": "HAMi documentation and website",
"license": "CC-BY-4.0",
"repository": {
"type": "git",
"url": "https://github.com/Project-HAMi/website.git"
},
"version": "0.0.1",
"engines": {
"node": ">=20.19.0"
},
"private": true,
"scripts": {
"docusaurus": "docusaurus",
"start": "docusaurus start",
"start:network": "./start-network.sh",
"build": "NODE_OPTIONS=\"--max-old-space-size=8192 --no-deprecation\" docusaurus build",
"build:fast": "NODE_OPTIONS=\"--max-old-space-size=8192 --no-deprecation\" docusaurus build --locale en",
"swizzle": "docusaurus swizzle",
"deploy": "docusaurus deploy",
"clear": "docusaurus clear",
"serve": "docusaurus serve",
"write-translations": "docusaurus write-translations",
"write-heading-ids": "docusaurus write-heading-ids",
"fetch-changelog": "node src/scripts/fetch-changelog.js",
"lint:md": "markdownlint 'docs/**/*.md' 'tutorials/**/*.md' 'blog/**/*.md' 'i18n/zh/docusaurus-plugin-content-docs-tutorials/current/**/*.md' 'i18n/zh/docusaurus-plugin-content-docs/current/**/*.md' 'i18n/zh/docusaurus-plugin-content-blog/**/*.md' --ignore CHANGELOG.md --ignore changelog --ignore versioned_docs --ignore node_modules",
"lint": "npm run lint:md",
"format:check": "prettier --check .",
"format": "prettier --write .",
"test": "node --test",
"check-links": "DOCUSAURUS_SITE_URL=http://127.0.0.1:3000 npm run build && bash scripts/check-links.sh",
"check:all": "npm run lint && npm run format:check && npm run test && npm run check-links"
},
"dependencies": {
"@docusaurus/core": "^3.10.1",
"@docusaurus/plugin-content-blog": "^3.10.1",
"@docusaurus/plugin-content-docs": "^3.10.1",
"@docusaurus/plugin-content-pages": "^3.10.1",
"@docusaurus/plugin-sitemap": "^3.10.1",
"@docusaurus/preset-classic": "^3.10.1",
"@docusaurus/theme-mermaid": "^3.10.1",
"@easyops-cn/docusaurus-search-local": "^0.55.3",
"@fortawesome/free-brands-svg-icons": "^7.3.1",
"@fortawesome/free-solid-svg-icons": "^7.3.1",
"@fortawesome/react-fontawesome": "^3.5.0",
"clsx": "^2.1.1",
"node-ical": "^0.27.1",
"prism-react-renderer": "^2.4.0",
"react": "^19.2.8",
"react-dom": "^19.2.8"
},
"browserslist": {
"production": [
">0.5%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@docusaurus/faster": "^3.10.1",
"@swc/core": "^1.15.47",
"markdownlint-cli": "^0.49.0",
"prettier": "^3.9.6",
"swc-loader": "^0.2.7"
},
"overrides": {
"markdownlint-cli": {
"js-yaml": "4.3.0",
"markdown-it": "14.3.0",
"run-con": "1.3.2"
},
"copy-webpack-plugin": {
"serialize-javascript": "7.0.7"
},
"css-minimizer-webpack-plugin": {
"serialize-javascript": "7.0.7"
},
"sockjs": {
"uuid": "11.1.1"
},
"brace-expansion": "5.0.9",
"fast-uri": "3.1.5",
"postcss": "8.5.25"
}
}