-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 985 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 985 Bytes
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
{
"name": "neon-water-2",
"version": "1.0.0",
"description": "Reactive water-based visual synthesizer - audio-to-video generation",
"main": "dist/index.js",
"type": "module",
"bin": {
"neon-water": "./dist/index.js"
},
"scripts": {
"build": "tsc",
"start": "tsx src/index.ts",
"render": "tsx src/index.ts render",
"analyze": "tsx src/index.ts analyze",
"themes": "tsx src/index.ts themes",
"web": "node web/server.js",
"clean": "rm -rf dist output/*.png output/*.mp4"
},
"keywords": ["audio", "visualization", "synthesizer", "three.js", "fluid-simulation"],
"author": "",
"license": "MIT",
"dependencies": {
"commander": "^12.1.0",
"fluent-ffmpeg": "^2.1.3",
"meyda": "^5.6.2",
"three": "^0.169.0",
"playwright": "^1.48.0"
},
"devDependencies": {
"@types/fluent-ffmpeg": "^2.1.26",
"@types/node": "^22.7.4",
"@types/three": "^0.169.0",
"tsx": "^4.19.1",
"typescript": "^5.6.2"
}
}