-
Notifications
You must be signed in to change notification settings - Fork 454
Expand file tree
/
Copy pathpackage.json
More file actions
137 lines (137 loc) · 5.19 KB
/
Copy pathpackage.json
File metadata and controls
137 lines (137 loc) · 5.19 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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
{
"name": "nitro-docs",
"version": "0.0.0",
"private": true,
"scripts": {
"docusaurus": "docusaurus",
"generate-precompiles-ref-tables": "tsx scripts/precompile-reference-generator.ts",
"update-variable-refs": "tsx scripts/update-variable-references.ts",
"prepare": "husky || true",
"start": "yarn && yarn clear && docusaurus start",
"build-glossary": "tsx scripts/build-glossary.ts",
"build-translation": "yarn tsx ./scripts/move-untranslated-files.ts",
"build": "yarn && yarn clear && 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",
"find-orphan-pages": "tsx scripts/find-orphan-pages.ts",
"find-orphaned-files": "node scripts/find-orphaned-files.js",
"format": "yarn format:docs && yarn format:app && yarn format:check",
"format:app": "prettier --write --config \"./.prettierrc.js\" -- \"./*.{js,json}\" \"src/**/*.{tsx,ts,scss,json,js}\"",
"format:docs": "prettier --write --config \"./.prettierrc.js\" -- \"docs/**/*.{md,mdx}\"",
"format:check": "prettier --check --config \"./.prettierrc.js\" -- \"./*.{js,json}\" \"src/**/*.{tsx,ts,scss,json,js}\" \"docs/**/*.{md,mdx}\"",
"typecheck": "tsc",
"test:llms-tracking": "tsx --test lib/llms-tracking.test.ts",
"test:codemod": "tsx --test scripts/lib/__tests__/*.test.ts",
"check-releases": "ts-node scripts/check-releases.ts",
"check-markdown": "tsx scripts/check-markdown.ts",
"notion:update": "tsx scripts/notion-update.ts",
"notion:export-csv": "tsx scripts/notion-export-qa-csv.ts",
"notion:verify-quicklooks": "tsx scripts/notion-verify-quicklooks.ts",
"lint:markdown": "markdownlint \"docs/**/*.{md,mdx}\" --ignore \"docs/sdk/**\"",
"lint:markdown:fix": "markdownlint \"docs/**/*.{md,mdx}\" --fix --ignore \"docs/sdk/**\"",
"generate-doc-manifest": "tsx scripts/generate-doc-manifest.ts",
"audit-docs": "tsx scripts/generate-doc-manifest.ts && tsx scripts/audit-docs.ts",
"audit-docs:report-only": "tsx scripts/audit-docs.ts",
"fetch-edge-challenge-data": "node scripts/fetch-edge-challenge-data.mjs",
"check-globalvars": "tsx scripts/check-globalvars-updates.ts",
"check-lunr-exclude": "tsx scripts/check-lunr-exclude-hide-from-search.ts",
"inventory-links": "tsx scripts/inventory-links.ts",
"move-doc": "tsx scripts/move-doc.ts",
"restructure": "tsx scripts/restructure.ts",
"sync-redirects": "tsx scripts/sync-vercel-redirects.ts"
},
"dependencies": {
"@arbitrum/sdk": "^4.0.5",
"@docusaurus/core": "^3.10.1",
"@docusaurus/plugin-client-redirects": "^3.10.1",
"@docusaurus/preset-classic": "^3.10.1",
"@docusaurus/theme-common": "^3.10.1",
"@docusaurus/theme-live-codeblock": "^3.10.1",
"@docusaurus/theme-mermaid": "^3.10.1",
"@ethersproject/address": "^5.8.0",
"@floating-ui/react": "^0.27.15",
"@inkeep/cxkit-docusaurus": "^0.5.119",
"@mdx-js/react": "^3.1.1",
"@notionhq/client": "^5.22.0",
"@radix-ui/react-dialog": "^1.1.15",
"@react-spring/web": "^10.1.0",
"@types/mdx": "^2.0.11",
"@types/prismjs": "^1.26.6",
"@types/react-syntax-highlighter": "^15.5.13",
"@vercel/edge": "1.3.1",
"clsx": "^2.1.1",
"d3": "^7.9.0",
"docusaurus-plugin-copy-page-button": "^0.8.1",
"docusaurus-plugin-fathom": "^1.2.0",
"docusaurus-plugin-sass": "^0.2.6",
"dotenv": "^17.4.2",
"ethers": "6.16.0",
"got": "15.0.5",
"marked": "^18.0.5",
"mermaid": "^11.15.0",
"posthog-docusaurus": "^2.0.5",
"posthog-js": "^1.380.1",
"prism-react-renderer": "^2.4.1",
"prismjs": "^1.30.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-syntax-highlighter": "^16.1.1",
"rehype-katex": "7",
"remark-math": "6",
"sass": "^1.100.0",
"tippy.js": "^6.3.7"
},
"devDependencies": {
"@actions/core": "^3.0.1",
"@actions/github": "^9.1.1",
"@docusaurus/module-type-aliases": "^3.10.1",
"@docusaurus/types": "^3.10.1",
"@offchainlabs/notion-docs-generator": "0.1.2",
"@offchainlabs/prettier-config": "0.3.0",
"@signalwire/docusaurus-plugin-llms-txt": "^1.2.2",
"@tsconfig/docusaurus": "^2.0.9",
"@types/d3": "^7.4.3",
"@types/node": "^25.9.1",
"@types/react": "^18.3.23",
"@types/semver": "^7.7.1",
"fs-extra": "^11.3.5",
"glob": "^13.0.6",
"gray-matter": "^4.0.3",
"hast-util-select": "^6",
"hastscript": "^6",
"husky": "^9.1.7",
"markdown-link-extractor": "^4.0.3",
"markdownlint-cli": "^0.48.0",
"prettier": "^2.8.3",
"remark-mdx": "^3.1.1",
"remark-parse": "^11.0.0",
"semver": "^7.8.2",
"tsx": "^4.22.4",
"typescript": "^6.0",
"unified": "^11.0.5",
"unist-util-visit": "^5.1.0"
},
"resolutions": {
"elliptic": "^6.6.1",
"serialize-javascript": "^7.0.5"
},
"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.x"
}
}