-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.62 KB
/
Copy pathpackage.json
File metadata and controls
61 lines (61 loc) · 1.62 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
{
"name": "spargo",
"description": "Real-time GPU image dithering in the browser, via WebGL. By darkroom.engineering.",
"version": "2.0.0",
"private": true,
"type": "module",
"license": "MIT",
"sideEffects": [
"*.css"
],
"packageManager": "bun@1.3.5",
"scripts": {
"dev": "next dev --turbopack",
"build": "next build",
"start": "next start",
"check": "biome check && tsc --noEmit",
"lint": "biome lint --max-diagnostics=200",
"lint:fix": "biome lint --write --unsafe --max-diagnostics=200",
"format": "biome format --write .",
"typecheck": "tsc --noEmit",
"analyze": "ANALYZE=true next build"
},
"dependencies": {
"@base-ui/react": "^1.5.0",
"@react-three/drei": "^10.7.7",
"@react-three/fiber": "^9.6.1",
"@vercel/analytics": "^2.0.1",
"clsx": "^2.1.1",
"hamo": "1.0.0-dev.13",
"next": "16.2.9",
"postprocessing": "^6.39.1",
"react": "19.2.7",
"react-colorful": "^5.6.1",
"react-dom": "19.2.7",
"tempus": "1.0.0-dev.17",
"three": "0.184.0",
"zod": "^4.4.3",
"zustand": "^5.0.14"
},
"devDependencies": {
"@biomejs/biome": "2.5.1",
"@next/bundle-analyzer": "16.2.9",
"@svgr/webpack": "^8.1.0",
"@tailwindcss/postcss": "^4.3.0",
"@types/node": "^24.0.0",
"@types/react": "19.2.17",
"@types/react-dom": "^19.2.3",
"@types/three": "^0.184.0",
"babel-plugin-react-compiler": "^1.0.0",
"lefthook": "^2.1.9",
"tailwindcss": "^4.3.0",
"typescript": "^6.0.3"
},
"trustedDependencies": [
"@biomejs/biome",
"@tailwindcss/oxide",
"esbuild",
"lefthook",
"sharp"
]
}