-
Notifications
You must be signed in to change notification settings - Fork 319
Expand file tree
/
Copy pathpackage.json
More file actions
102 lines (102 loc) · 3.32 KB
/
Copy pathpackage.json
File metadata and controls
102 lines (102 loc) · 3.32 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
{
"name": "temporal-documentation",
"version": "0.0.0",
"private": true,
"license": "MIT",
"engines": {
"node": "24.x"
},
"scripts": {
"prebuild": "node ./bin/sync-ai-cookbook.js",
"build": "node --max-old-space-size=7168 ./node_modules/@docusaurus/core/bin/docusaurus.mjs build",
"clear": "docusaurus clear",
"deploy": "docusaurus deploy",
"docusaurus": "docusaurus",
"check-links": "hyperlink build/index.html --recursive --check-anchors",
"lint": "vale --output=JSON docs/**/**/*.mdx > vale-output.json; vale --output=JSON docs/**/**/*.md > vale-md-output.json",
"lint:go": "vale docs/develop/go/*.mdx",
"lint:java": "vale docs/develop/java/*.mdx",
"lint:php": "vale docs/develop/php/*.mdx",
"lint:py": "vale docs/develop/python/*.mdx",
"lint:ruby": "vale docs/develop/ruby/*.mdx",
"lint:ts": "vale docs/develop/typescript/*.mdx",
"fix-vale": "node vale/auto-fix-vale.js vale-output.json",
"serve": "docusaurus serve",
"snipsync": "snipsync",
"start": "node ./bin/ensure-ai-cookbook.js && docusaurus start",
"sync:ai-cookbook": "node ./bin/sync-ai-cookbook.js",
"swizzle": "docusaurus swizzle",
"vale": "./assembly/run-vale.sh",
"test:visual": "playwright test",
"write-heading-ids": "docusaurus write-heading-ids",
"write-translations": "docusaurus write-translations",
"prepare": "husky",
"e2e:install": "npx playwright install --with-deps",
"e2e:dev": "concurrently \"docusaurus start\" \"wait-on http://localhost:3000 && playwright test --project=chromium-desktop\"",
"e2e": "playwright test"
},
"resolutions": {
"caniuse-lite": "1.0.30001781",
"qs": "6.14.1"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"dependencies": {
"@docusaurus/core": "^3.10.1",
"@docusaurus/faster": "^3.10.1",
"@docusaurus/mdx-loader": "^3.10.1",
"@docusaurus/module-type-aliases": "^3.10.1",
"@docusaurus/plugin-content-docs": "^3.10.1",
"@docusaurus/preset-classic": "^3.10.1",
"@docusaurus/theme-common": "^3.10.1",
"@docusaurus/theme-mermaid": "^3.10.1",
"@docusaurus/types": "^3.10.1",
"@mdx-js/react": "^3.0.0",
"@types/react": "^19.2.17",
"@types/react-dom": "^19.1.0",
"@vercel/functions": "^3.7.1",
"algoliasearch": "^5.54.1",
"chart.js": "^4.4.1",
"clsx": "^2.1.1",
"comlink": "^4.4.2",
"concurrently": "^10.0.1",
"docusaurus-plugin-llms": "^0.2.0",
"docusaurus-pushfeedback": "^1.0.3",
"js-yaml": "^4.2.0",
"path": "^0.12.7",
"react": "^19.2.7",
"react-dom": "^19.2.7",
"react-icons": "^5.6.0",
"react-instantsearch": "^7.35.1",
"react-markdown": "^10.1.0",
"react-player": "^3.4.0",
"rehype-katex": "7",
"remark-math": "6",
"snipsync": "^1.12.0",
"tar-fs": "^3.1.2",
"uuid": "^14.0.0",
"wait-on": "^9.0.10",
"webpack-font-preload-plugin": "^1.5.0",
"yaml": "^2.9.0"
},
"devDependencies": {
"@playwright/test": "^1.60.0",
"@types/node": "^25.9.3",
"@types/yaml": "^1.9.7",
"dprint": "^0.54.0",
"eslint": "^9.8.0",
"eslint-plugin-react": "^7.23.2",
"husky": "^9.1.7",
"hyperlink": "^5.0.4"
}
}