-
Notifications
You must be signed in to change notification settings - Fork 50
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.86 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 2.86 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
{
"name": "developer-hub",
"version": "1.0.0",
"private": true,
"scripts": {
"docusaurus": "docusaurus",
"start": "docusaurus start",
"automations": "chmod +x run-automations.sh && ./run-automations.sh",
"update-deps": "chmod +x update-deps.sh && ./update-deps.sh",
"build": "docusaurus build && node scripts/generate-md-routes.mjs && node scripts/fix-llms-urls.mjs && node scripts/inject-html-llms-tags.mjs",
"swizzle": "docusaurus swizzle",
"deploy": "docusaurus deploy",
"deploy:mcp": "npx wrangler deploy --config cloudflare-mcp/wrangler.toml",
"clear": "docusaurus clear",
"serve": "docusaurus serve",
"write-translations": "docusaurus write-translations",
"write-heading-ids": "docusaurus write-heading-ids",
"typecheck": "tsc",
"format": "prettier --write . && prettier --write --plugin=prettier-plugin-solidity 'examples/developer-hub-solidity/**/*.sol' && npm run format --prefix examples/developer-hub-javascript",
"format:diff": "prettier --list-different .",
"format:check": "prettier --check \"**/*.{js,jsx,ts,tsx,md,mdx}\"",
"lint": "npx eslint . --cache --cache-location .eslintcache",
"lint:md": "textlint \"docs/**/*.{md,mdx}\"",
"lint:md:fix": "textlint --fix \"docs/**/*.{md,mdx}\""
},
"dependencies": {
"@docusaurus/core": "^3.9.2",
"@docusaurus/faster": "^3.9.2",
"@docusaurus/preset-classic": "^3.9.2",
"@docusaurus/theme-mermaid": "^3.9.2",
"@easyops-cn/docusaurus-search-local": "^0.52.3",
"@mdx-js/react": "^3.1.1",
"@tippyjs/react": "^4.2.6",
"clsx": "^2.1.1",
"docusaurus-plugin-copy-page-button": "github:fassko/docusaurus-plugin-copy-page-button",
"docusaurus-plugin-mcp-server": "^0.10.2",
"prism-react-renderer": "^2.4.1",
"raw-loader": "^4.0.2",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"rehype-katex": "^7.0.1",
"remark-math": "^6.0.0",
"swagger-ui-react": "^5.31.0",
"textlint-filter-rule-allowlist": "^4.0.0"
},
"devDependencies": {
"@docusaurus/eslint-plugin": "^3.9.2",
"@docusaurus/module-type-aliases": "^3.9.2",
"@docusaurus/tsconfig": "^3.9.2",
"@docusaurus/types": "^3.9.2",
"@types/react": "^19.2.10",
"@types/react-dom": "^19.2.3",
"@typescript-eslint/eslint-plugin": "^8.54.0",
"docusaurus-plugin-llms": "^0.3.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.5",
"prettier": "^3.8.1",
"prettier-plugin-solidity": "^2.2.1",
"textlint": "^15.5.2",
"textlint-plugin-mdx": "^1.0.2",
"textlint-rule-one-sentence-per-line": "^2.0.0",
"typescript": "^5.9.3"
},
"browserslist": {
"production": [
">0.5%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"engines": {
"node": ">=22"
}
}