-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
97 lines (97 loc) · 3.2 KB
/
Copy pathpackage.json
File metadata and controls
97 lines (97 loc) · 3.2 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
{
"name": "zdoc-redesign",
"version": "0.0.0",
"private": true,
"scripts": {
"docusaurus": "docusaurus",
"start": "docusaurus start",
"build": "NODE_OPTIONS='--max-old-space-size=4096' 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",
"typecheck": "tsc",
"check:static-env": "node scripts/check-static-env-placeholder.js",
"test:frontend": "vitest run",
"test:e2e": "playwright test --project=chromium",
"test:translation": "node scripts/translation/sidebarKeys.test.js && node scripts/translation/manifest.test.js && node scripts/translation/agentRunner.test.js && node --test scripts/translation/chunker.test.js scripts/translation/reportSummary.test.js scripts/translation/workflowReporting.test.js",
"doc-publish-bot": "node scripts/doc-publish-bot/index.js",
"test:doc-publish-bot": "node --test scripts/doc-publish-bot/*.test.js",
"test:all": "npm run test --prefix chat-proxy && npm run test:frontend"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.0.0",
"@docusaurus/core": "3.10.1",
"@docusaurus/faster": "3.10.1",
"@docusaurus/plugin-content-docs": "3.10.1",
"@docusaurus/preset-classic": "3.10.1",
"@docusaurus/theme-common": "3.10.1",
"@easyops-cn/docusaurus-search-local": "^0.41.0",
"@inkeep/cxkit-docusaurus": "^0.5.79",
"@inkeep/cxkit-react": "^0.5.71",
"@inkeep/docusaurus": "^2.0.16",
"@mdx-js/mdx": "^3.1.1",
"@mdx-js/react": "^3.0.0",
"@smithy/node-http-handler": "^4.5.0",
"@zdoc/chat-ui": "workspace:*",
"axios": "^1.6.0",
"bottleneck": "^2.19.5",
"cheerio": "^1.0.0",
"clsx": "^2.0.0",
"docusaurus-gtm-plugin": "^0.0.2",
"docusaurus-plugin-image-zoom": "^2.0.0",
"dotenv": "^16.3.1",
"inquirer": "^9.2.17",
"js-yaml": "^4.1.1",
"lodash": "^4.17.21",
"lucide-react": "^0.577.0",
"node-fetch": "^2.7.0",
"nunjucks": "^3.2.4",
"playwright": "^1.58.2",
"prism-react-renderer": "^2.3.0",
"prismjs": "^1.30.0",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"react-markdown": "^10.1.0",
"rehype-katex": "^7.0.1",
"remark-gfm": "^4.0.1",
"remark-math": "^6.0.0",
"sharp": "^0.34.5",
"showdown": "^2.1.0",
"slugify": "^1.6.6",
"unist-util-visit": "^5.0.0",
"xml2js": "^0.6.2",
"zod": "^3.25.13",
"zod-to-json-schema": "^3.25.1"
},
"devDependencies": {
"@docusaurus/module-type-aliases": "3.10.1",
"@docusaurus/tsconfig": "3.10.1",
"@docusaurus/types": "3.10.1",
"@playwright/test": "^1.58.2",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@types/node": "^25.3.5",
"@vitest/coverage-v8": "^3.2.4",
"jsdom": "^29.0.0",
"typescript": "~5.6.2",
"vitest": "^3.2.4"
},
"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": ">=20.0"
}
}