forked from o1-labs/o1js-documentation-site
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.99 KB
/
Copy pathpackage.json
File metadata and controls
66 lines (66 loc) · 1.99 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
{
"name": "o1js-documentation-site",
"version": "0.0.0",
"private": true,
"scripts": {
"docusaurus": "docusaurus",
"start": "docusaurus start",
"build": "docusaurus build",
"swizzle": "docusaurus swizzle",
"clear": "docusaurus clear",
"serve": "docusaurus serve",
"write-translations": "docusaurus write-translations",
"write-heading-ids": "docusaurus write-heading-ids",
"test": "npx vitest run",
"typecheck": "tsc",
"spellcheck": "npx cspell --no-progress --no-summary 'docs/**/*.{md,mdx}' '!docs/api-reference/**/*' '!docs/changelog.md'",
"link-check": "output=$(find . \\( -name '*.md' -o -name '*.mdx' \\) -not -path './node_modules/*' -not -path './docs/api-reference/*' -not -path './docs/changelog.md' -not -path './versioned_docs/*' | xargs npx markdown-link-check --quiet --config .mlc-config.json); echo \"$output\""
},
"dependencies": {
"@docusaurus/core": "3.7.0",
"@docusaurus/preset-classic": "3.7.0",
"@docusaurus/theme-mermaid": "3.7.0",
"@mdx-js/react": "^3.0.0",
"clsx": "^2.0.0",
"prism-react-renderer": "^2.3.0",
"react": "^19.0.0",
"react-dom": "^19.0.0"
},
"devDependencies": {
"@docusaurus/module-type-aliases": "3.7.0",
"@docusaurus/tsconfig": "3.7.0",
"@docusaurus/types": "3.7.0",
"cspell": "^8.18.1",
"dotenv": "^16.4.7",
"markdown-link-check": "^3.13.7",
"o1js": "^2.10.0",
"rehype-katex": "^7.0.1",
"remark-code-snippets": "^1.1.0",
"remark-math": "^6.0.0",
"typescript": "~5.6.2",
"unist-util-visit": "^5.0.0",
"vitest": "^3.0.9"
},
"optionalDependencies": {
"@rollup/rollup-darwin-arm64": "4.x",
"@rollup/rollup-linux-x64-gnu": "4.x"
},
"browserslist": {
"production": [
">0.5%",
"not dead",
"not op_mini all"
],
"development": [
"last 3 chrome version",
"last 3 firefox version",
"last 5 safari version"
]
},
"engines": {
"node": ">=22.0"
},
"volta": {
"node": "22.14.0"
}
}