-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 2.49 KB
/
package.json
File metadata and controls
91 lines (91 loc) · 2.49 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
{
"name": "zephyr-cloud-docs",
"version": "0.0.2",
"private": true,
"repository": {
"type": "git",
"url": "git+https://github.com/ZephyrCloudIO/zephyr-documentation.git"
},
"scripts": {
"build": "rspress build",
"dev": "rspress dev --port 3030",
"lint": "eslint .",
"format": "prettier --write .",
"prepare": "husky",
"preview": "rspress preview",
"typecheck": "tsc --noEmit",
"commitlint": "commitlint --edit"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"lint-staged": {
"*.{ts,tsx,js}": [
"prettier --write",
"eslint --max-warnings 0 ."
]
},
"engines": {
"node": "24.x",
"pnpm": "10.x"
},
"dependencies": {
"@intercom/messenger-js-sdk": "^0.0.18",
"@radix-ui/react-icons": "^1.3.2",
"@radix-ui/react-progress": "^1.1.7",
"@radix-ui/react-slot": "^1.2.3",
"@radix-ui/react-tabs": "^1.1.13",
"@radix-ui/react-tooltip": "^1.2.8",
"@rspress/core": "^2.0.1",
"@rspress/plugin-client-redirects": "^2.0.1",
"@rspress/plugin-preview": "^2.0.1",
"@rspress/plugin-sitemap": "2.0.1",
"@rspress/runtime": "^2.0.0-beta.34",
"@rspress/shared": "^2.0.1",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"commitlint": "^20.0.0",
"husky": "^9.1.7",
"lucide-react": "^0.544.0",
"posthog-js": "^1.272.0",
"react-wrap-balancer": "^1.1.1",
"rspress-plugin-file-tree": "^0.4.0",
"rspress-plugin-mermaid": "^1.0.0",
"rspress-plugin-reading-time": "^1.0.0",
"tailwind-merge": "^3.3.1"
},
"devDependencies": {
"@commitlint/cli": "^20.0.0",
"@commitlint/config-conventional": "^20.0.0",
"@eslint/js": "^9.36.0",
"@rspress/plugin-algolia": "^2.0.1",
"@rspress/plugin-llms": "2.0.1",
"@tailwindcss/postcss": "^4.1.13",
"@tailwindcss/typography": "^0.5.19",
"@types/node": "^24.5.2",
"@types/react": "^19.1.13",
"autoprefixer": "^10.4.21",
"eslint": "^9.36.0",
"globals": "^16.4.0",
"lint-staged": "^16.2.1",
"postcss": "^8.5.6",
"postcss-loader": "^8.2.0",
"prettier": "^3.6.2",
"rsbuild-plugin-open-graph": "^1.1.0",
"semantic-release": "^25.0.0",
"tailwindcss": "^4.1.13",
"typescript": "^5.9.2",
"typescript-eslint": "^8.44.1",
"zephyr-rspress-plugin": "^0.1.10"
},
"pnpm": {
"overrides": {
"protobufjs": ">=7.5.5 <8",
"handlebars": ">=4.7.9"
},
"patchedDependencies": {}
},
"packageManager": "pnpm@10.33.0"
}