-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
98 lines (98 loc) · 2.7 KB
/
package.json
File metadata and controls
98 lines (98 loc) · 2.7 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
{
"name": "csr-dev-tools",
"private": true,
"version": "0.1.0",
"type": "module",
"scripts": {
"dev": "pnpm wasm:build:dev && vite --port 5173",
"build": "pnpm wasm:build && tsc -b && vite build",
"lint": "oxlint .",
"lint:fix": "oxlint --fix .",
"format": "oxfmt --write src/",
"format:check": "oxfmt --check src/",
"preview": "vite preview --port 5173",
"test": "vitest run",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui",
"test:e2e:headed": "playwright test --headed",
"wasm:build": "cd wasm && ./scripts/build.sh",
"wasm:build:dev": "cd wasm && ./scripts/build.sh --dev",
"wasm:test": "cd wasm && cargo test"
},
"dependencies": {
"@codemirror/lang-json": "6.0.2",
"@codemirror/lang-sql": "6.10.0",
"@codemirror/state": "6.6.0",
"@codemirror/view": "6.41.0",
"@huggingface/transformers": "4.0.1",
"@lezer/highlight": "1.2.3",
"@monaco-editor/react": "4.7.0",
"@peculiar/x509": "2.0.0",
"@radix-ui/react-checkbox": "1.3.3",
"@radix-ui/react-dialog": "1.1.15",
"@radix-ui/react-dropdown-menu": "2.1.16",
"@radix-ui/react-radio-group": "1.3.8",
"@radix-ui/react-select": "2.2.6",
"@radix-ui/react-slider": "1.3.6",
"@radix-ui/react-switch": "1.2.6",
"@radix-ui/react-tabs": "1.1.13",
"@radix-ui/react-toast": "1.2.15",
"@tailwindcss/typography": "0.5.19",
"@tanstack/react-query": "5.96.2",
"@tanstack/react-router": "1.168.10",
"@uiw/codemirror-themes": "4.25.9",
"@uiw/react-codemirror": "4.25.9",
"@xyflow/react": "12.10.2",
"ajv": "8.18.0",
"dompurify": "3.3.3",
"graphql": "16.13.2",
"jsonpath-plus": "10.4.0",
"jszip": "3.10.1",
"mermaid": "11.14.0",
"motion": "12.38.0",
"react": "19.2.4",
"react-dom": "19.2.4",
"react-image-crop": "11.0.10",
"reflect-metadata": "0.2.2",
"tailwind-variants": "3.2.2",
"tailwindcss": "4.2.2",
"zustand": "5.0.12"
},
"devDependencies": {
"@playwright/test": "1.59.1",
"@tailwindcss/vite": "4.2.2",
"@types/node": "25.5.2",
"@types/react": "19.2.14",
"@types/react-dom": "19.2.3",
"@vitejs/plugin-react": "6.0.1",
"jsdom": "29.0.1",
"oxfmt": "0.43.0",
"oxlint": "1.58.0",
"typescript": "6.0.2",
"vite": "8.0.3",
"vite-plugin-wasm": "3.6.0",
"vitest": "4.1.2"
},
"peerDependencies": {
"tailwind-merge": "3.4.0"
},
"pnpm": {
"supportedArchitectures": {
"os": [
"current",
"darwin",
"linux"
],
"cpu": [
"current",
"arm64",
"x64"
]
}
},
"packageManager": "pnpm@10.11.0",
"engines": {
"node": ">=24.5.0"
},
"sideEffects": false
}