-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
43 lines (43 loc) · 1012 Bytes
/
package.json
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
{
"name": "smokesculpter",
"version": "1.0.0",
"description": "Real-time 3D smoke simulation",
"main": "dist/index.js",
"type": "module",
"directories": {
"doc": "docs"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "vite",
"build": "vite build",
"serve": "vite preview"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nociza/SmokeSculpter.git"
},
"keywords": [
"smoke-simulation"
],
"author": "nociza",
"license": "UNLICENSED",
"bugs": {
"url": "https://github.com/nociza/SmokeSculpter/issues"
},
"homepage": "https://github.com/nociza/SmokeSculpter#readme",
"dependencies": {
"dat.gui": "^0.7.9",
"stats.js": "^0.17.0",
"three": "^0.151.3",
"vite-plugin-glsl": "^1.1.2"
},
"devDependencies": {
"@types/dat.gui": "^0.7.9",
"@types/three": "^0.150.1",
"nodemon": "^2.0.16",
"ts-node-dev": "^2.0.0",
"typescript": "^5.0.4",
"vite": "^4.2.2"
}
}