-
Notifications
You must be signed in to change notification settings - Fork 323
Expand file tree
/
Copy pathpackage.json
More file actions
106 lines (106 loc) · 3.55 KB
/
Copy pathpackage.json
File metadata and controls
106 lines (106 loc) · 3.55 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
{
"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",
"postbuild": "node ./bin/check-font-preload-hash.js",
"clear": "docusaurus clear",
"deploy": "docusaurus deploy",
"docusaurus": "docusaurus",
"check-links": "hyperlink build/index.html --recursive --check-anchors",
"validate:og-images": "node ./bin/validate-og-images.js",
"check:og-budget": "node ./bin/check-og-build-budget.js",
"test": "node --test",
"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",
"lint:mermaid": "node ./scripts/lint-mermaid.mjs",
"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",
"@resvg/resvg-js": "^2.6.2",
"@types/react": "^19.2.17",
"@types/react-dom": "^19.1.0",
"@vercel/functions": "^3.7.5",
"algoliasearch": "^5.55.1",
"chart.js": "^4.4.1",
"clsx": "^2.1.1",
"comlink": "^4.4.2",
"concurrently": "^10.0.3",
"docusaurus-plugin-llms": "^0.2.0",
"docusaurus-pushfeedback": "^1.0.3",
"gray-matter": "^4.0.3",
"js-yaml": "^5.2.2",
"react": "^19.2.7",
"react-dom": "^19.2.7",
"react-icons": "^5.6.0",
"react-instantsearch": "^7.38.0",
"react-markdown": "^10.1.0",
"satori": "^0.26.0",
"search-insights": "^2",
"sharp": "^0.35.3",
"snipsync": "^1.12.0",
"uuid": "^14.0.1",
"wait-on": "^9.0.10",
"yaml": "^2.9.0"
},
"devDependencies": {
"@playwright/test": "^1.61.0",
"@types/node": "^26.0.0",
"dprint": "^0.55.1",
"eslint": "^9.8.0",
"eslint-plugin-react": "^7.23.2",
"global-jsdom": "^29.0.0",
"husky": "^9.1.7",
"hyperlink": "^5.0.4"
}
}