-
Notifications
You must be signed in to change notification settings - Fork 27
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 2.07 KB
/
Copy pathpackage.json
File metadata and controls
43 lines (43 loc) · 2.07 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
{
"name": "@slackblocks/docs",
"version": "1.0.0",
"private": true,
"scripts": {
"generate:python": "UV_CACHE_DIR=../.uv-cache uv run --project ../python --group docs python scripts/generate_python_reference.py",
"generate:legacy": "UV_CACHE_DIR=../.uv-cache uv run --project ../python --group docs python scripts/port_legacy_docs.py generate",
"check:legacy-snapshots": "UV_CACHE_DIR=../.uv-cache uv run --project ../python --group docs python scripts/port_legacy_docs.py check",
"check:release-snapshots": "node scripts/check_release_snapshots.mjs",
"check:typescript-api": "node scripts/check_typescript_api_docs.mjs",
"check:typescript-api-rendering": "node scripts/check_typescript_api_rendering.mjs",
"check:legacy-contract": "node scripts/check_legacy_docs.mjs",
"test:legacy-fixture": "UV_CACHE_DIR=../.uv-cache uv run --project ../python --group docs python scripts/port_legacy_docs.py fixture",
"generate": "pnpm generate:python && pnpm check:typescript-api",
"start": "pnpm generate && docusaurus start",
"build": "pnpm generate && docusaurus build && pnpm check:typescript-api-rendering && pnpm test:legacy-fixture && node scripts/check_legacy_docs.mjs --build-dir build",
"typecheck": "tsc --noEmit",
"test": "pnpm typecheck && pnpm check:legacy-contract"
},
"dependencies": {
"@docusaurus/core": "^3.10.2",
"@docusaurus/plugin-content-docs": "^3.10.2",
"@docusaurus/plugin-client-redirects": "^3.10.2",
"@docusaurus/preset-classic": "^3.10.2",
"@docusaurus/theme-common": "^3.10.2",
"@docusaurus/types": "^3.10.2",
"@easyops-cn/docusaurus-search-local": "^0.55.3",
"docusaurus-plugin-typedoc": "1.4.2",
"prism-react-renderer": "^2.4.1",
"raw-loader": "^4.0.2",
"@nicklambourne/slackblocks": "workspace:*",
"typedoc": "0.28.20",
"typedoc-docusaurus-theme": "1.4.2",
"typedoc-plugin-markdown": "4.12.0"
},
"devDependencies": {
"@docusaurus/tsconfig": "^3.10.2",
"@types/react": "^19.2.18",
"react": "^19.2.8",
"react-dom": "^19.2.8",
"typescript": "^5.9.3"
}
}