-
Notifications
You must be signed in to change notification settings - Fork 81
Expand file tree
/
Copy pathpackage.json
More file actions
117 lines (117 loc) · 3.73 KB
/
package.json
File metadata and controls
117 lines (117 loc) · 3.73 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
107
108
109
110
111
112
113
114
115
116
117
{
"name": "v-3",
"version": "0.0.0",
"private": true,
"scripts": {
"docusaurus": "docusaurus",
"lint:prettier": "prettier . --write",
"lint:vale": "vale",
"start": "docusaurus start --no-open --hot-only",
"build": "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",
"write-code-blocks": "bun run ./scripts/write-code-blocks.ts",
"format-code-blocks": "bun run ./scripts/format-code-blocks.ts",
"check-code-blocks": "./scripts/check-code-blocks.sh",
"ai": "bun run scripts/ai.ts",
"search:update": "bun run scripts/search/index.ts",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"test:bun": "bun test",
"test:bun:watch": "bun test --watch",
"generate:references:typescript": "bun run ./scripts/sdk-references/typescript-references.ts"
},
"dependencies": {
"@algolia/client-search": "^5.29.0",
"@amplitude/analytics-browser": "^2.11.11",
"@amplitude/plugin-session-replay-browser": "^1.13.9",
"@docsearch/react": "^3.6.2",
"@docusaurus/core": "^3.8.1",
"@docusaurus/plugin-client-redirects": "^3.8.1",
"@docusaurus/plugin-debug": "^3.8.1",
"@docusaurus/preset-classic": "^3.8.1",
"@docusaurus/theme-search-algolia": "^3.8.1",
"@mdx-js/react": "^3.0.0",
"@radix-ui/react-accordion": "^1.2.2",
"@radix-ui/react-form": "^0.1.0",
"@radix-ui/react-slot": "^1.1.0",
"@radix-ui/themes": "^3.1.6",
"@scalar/api-client": "^2.5.22",
"@scalar/api-client-react": "^1.3.27",
"@scalar/api-reference-react": "^0.7.38",
"@scalar/openapi-parser": "^0.10.14",
"@scalar/openapi-types": "^0.2.0",
"axios": "^1.7.9",
"class-variance-authority": "^0.7.1",
"clsx": "^2.0.0",
"docusaurus-plugin-sass": "^0.2.5",
"dotenv": "^16.4.5",
"js-cookie": "^3.0.5",
"lucide-react": "^0.534.0",
"motion": "^11.13.1",
"prism-react-renderer": "^2.4.1",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"react-markdown": "^10.1.0",
"sass": "^1.80.6",
"search-insights": "^2.17.3",
"supertokens-website": "^20.1.5",
"tailwind-merge": "^2.5.5",
"uuid": "^11.0.3",
"zod": "^4.0.17"
},
"devDependencies": {
"@docusaurus/faster": "^3.8.1",
"@docusaurus/module-type-aliases": "^3.8.1",
"@docusaurus/tsconfig": "^3.8.1",
"@docusaurus/types": "^3.8.1",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.2.0",
"@testing-library/user-event": "^14.6.1",
"@types/bun": "^1.2.9",
"@types/fs-extra": "^11.0.4",
"@vitejs/plugin-react": "^4.3.4",
"algoliasearch": "^5.32.0",
"chalk": "^5.4.1",
"fs-extra": "^11.2.0",
"js-yaml": "^4.1.0",
"jsdom": "^26.0.0",
"ora": "^8.2.0",
"prettier": "3.3.3",
"tree-sitter": "^0.21.0",
"tree-sitter-go": "^0.21.2",
"tree-sitter-python": "^0.21.0",
"tree-sitter-typescript": "^0.21.2",
"typedoc": "^0.28.12",
"typedoc-plugin-frontmatter": "^1.3.0",
"typedoc-plugin-inline-sources": "^1.3.0",
"typedoc-plugin-markdown": "^4.8.1",
"typedoc-plugin-mdn-links": "^5.0.9",
"typedoc-plugin-merge-modules": "^7.0.0",
"typedoc-plugin-missing-exports": "^4.1.0",
"typescript": "~5.6.2",
"vitest": "^3.0.9",
"ws": "^8.18.0"
},
"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": ">=18.0"
}
}