-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
115 lines (115 loc) · 3.1 KB
/
package.json
File metadata and controls
115 lines (115 loc) · 3.1 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
{
"name": "browzarr",
"version": "0.5.1",
"description": "A browser-based visualization toolkit for exploring and analyzing Zarr data stores.",
"keywords": [
"zarr",
"3d",
"graphics",
"threejs",
"rendering",
"geometry",
"webgpu"
],
"homepage": "https://browzarr.io",
"license": "Apache-2.0",
"author": {
"name": "Jeran Poehls",
"email": "jpoehls@bgc-jena.mpg.de"
},
"contributors": [
{
"name": "Lazaro Alonso",
"email": "lazarus.alon@gmail.com",
"url": "https://lazarusa.github.io"
}
],
"repository": {
"type": "git",
"url": "git+https://github.com/EarthyScience/Browzarr.git"
},
"bugs": {
"url": "https://github.com/EarthyScience/Browzarr/issues/"
},
"private": true,
"packageManager": "pnpm@10.11.1",
"scripts": {
"postinstall": "node src/hooks/copy-wasm.mjs",
"prBuild": "pnpm buildRepo",
"prLint": "pnpm lint",
"dev": "next dev",
"buildRepo": "pnpm rmBuild && pnpm build",
"rmBuild": "pnpm -r exec rm -rf out",
"build": "next build",
"start": "next start",
"test": "vitest",
"test:coverage": "vitest run --coverage",
"lint": "eslint . --max-warnings=100"
},
"dependencies": {
"@base-ui/react": "^1.3.0",
"@earthyscience/netcdf4-wasm": "0.2.4",
"@ffmpeg/ffmpeg": "^0.12.15",
"@ffmpeg/util": "^0.12.2",
"@hookform/resolvers": "^5.2.2",
"@monaco-editor/react": "^4.7.0",
"@react-spring/three": "^10.0.0",
"@react-three/drei": "^10.7.7",
"@react-three/fiber": "^9.5.0",
"@react-three/postprocessing": "^3.0.4",
"@types/three": "^0.182.0",
"@types/webpack": "^5.28.5",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cmdk": "^1.1.1",
"date-fns": "^4.1.0",
"embla-carousel-react": "^8.6.0",
"fflate": "^0.8.2",
"gsap": "^3.13.0",
"icechunk-js": "^0.3.1",
"input-otp": "^1.4.2",
"js-colormaps-es": "^0.0.5",
"lucide-react": "^0.562.0",
"next": "^16.2.0",
"next-themes": "^0.4.6",
"radix-ui": "1.4.3",
"react": "^19.0.0",
"react-day-picker": "^9.14.0",
"react-dom": "^19.0.0",
"react-hook-form": "^7.71.2",
"react-icons": "^5.5.0",
"react-resizable-panels": "^4.7.3",
"recharts": "2.15.4",
"sonner": "^2.0.7",
"tailwind-merge": "^3.3.0",
"three": "^0.182.0",
"three-stdlib": "^2.36.0",
"vaul": "^1.1.2",
"webgpu-utils": "^1.11.0",
"zarrita": "^0.6.2",
"zod": "^4.3.6",
"zustand": "^5.0.8"
},
"devDependencies": {
"@biomejs/biome": "2.3.8",
"@eslint/eslintrc": "^3",
"@tailwindcss/postcss": "^4",
"@testing-library/dom": "^10.4.0",
"@testing-library/react": "^16.3.0",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"@vitejs/plugin-react": "^4.4.1",
"@vitest/coverage-v8": "^3.2.4",
"eslint": "^9",
"eslint-config-next": "^16.2.0",
"eslint-plugin-next": "^0.0.0",
"jsdom": "^26.1.0",
"raw-loader": "^4.0.2",
"tailwindcss": "^4",
"tw-animate-css": "^1.3.4",
"typescript": "^5",
"vite-tsconfig-paths": "^5.1.4",
"vitest": "^3.1.2"
}
}