-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.16 KB
/
Copy pathpackage.json
File metadata and controls
54 lines (54 loc) · 1.16 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
{
"name": "@brandonlukas/luminar",
"version": "0.2.6",
"description": "Visualize 2D vector fields as looping particle flows with bloom and glow effects",
"type": "module",
"author": "Brandon Lukas",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/brandonlukas/luminar.git"
},
"keywords": [
"vector-field",
"visualization",
"particle-flow",
"threejs",
"bloom",
"csv",
"data-viz",
"webgl"
],
"bin": {
"luminar": "./bin/luminar.mjs"
},
"files": [
"bin/",
"dist/",
"public/",
"index.html",
"src/"
],
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"build-and-preview": "npm run build && npm run preview --",
"visualize:csv": "node scripts/visualize-csv.mjs"
},
"devDependencies": {
"@types/three": "^0.182.0",
"typescript": "~5.9.3",
"vite": "npm:rolldown-vite@7.2.5"
},
"overrides": {
"vite": "npm:rolldown-vite@7.2.5"
},
"dependencies": {
"@ffmpeg/ffmpeg": "^0.12.15",
"@ffmpeg/util": "^0.12.2",
"open": "^10.1.0",
"sirv": "^2.0.4",
"three": "^0.182.0"
}
}