-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.67 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.67 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
{
"name": "vue-logic-visualizer",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"lint": "biome check ./src",
"lint:fix": "biome check --write --unsafe ./src",
"format": "biome format --write ./src",
"prepare": "husky"
},
"lint-staged": {
"*.{ts,tsx}": "biome check --write --unsafe --no-errors-on-unmatched --files-ignore-unknown=true"
},
"dependencies": {
"@google/genai": "^1.34.0",
"@radix-ui/react-checkbox": "^1.3.3",
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-scroll-area": "^1.2.10",
"@tanstack/react-table": "^8.21.3",
"@tanstack/react-virtual": "^3.13.17",
"@use-gesture/react": "^10.3.1",
"@vue/compiler-sfc": "^3.5.26",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"d3": "^7.9.0",
"fuse.js": "^7.1.0",
"jotai": "^2.16.1",
"lucide-react": "^0.562.0",
"mermaid": "^11.12.2",
"react": "^19.2.3",
"react-dom": "^19.2.3",
"react-hotkeys-hook": "^5.2.1",
"tailwind-merge": "^3.4.0",
"tw-animate-css": "^1.4.0"
},
"devDependencies": {
"@babel/core": "^7.28.5",
"@babel/preset-react": "^7.28.5",
"@babel/preset-typescript": "^7.28.5",
"@biomejs/biome": "2.3.11",
"@tailwindcss/vite": "^4.1.18",
"@types/node": "^25.0.3",
"@vitejs/plugin-react": "^5.1.2",
"@vue/compiler-core": "^3.5.26",
"babel-plugin-macros": "^3.1.0",
"dependency-cruiser": "^17.3.6",
"husky": "^9.1.7",
"jotai-devtools": "^0.13.0",
"lint-staged": "^16.2.7",
"tailwindcss": "^4.1.18",
"typescript": "~5.9.3",
"vite": "^7.3.0"
}
}