-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
44 lines (44 loc) · 1.13 KB
/
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
44
{
"name": "threejs-csg",
"version": "0.0.1",
"description": "Constructive Solid Geometry for three.js, ES6 + BufferGeometry",
"main": "build/CSG.js",
"modules": "build/CSG.js",
"repository": {
"type": "git",
"url": "git+https://github.com/looeee/threejs-csg.git"
},
"keywords": [
"csg",
"three.js",
"buffergeometry",
"geometry",
"csg",
"constructive",
"solid",
"geometry",
"webgl",
"graphics"
],
"author": "Lewy Blue <[email protected]> (https://discoverthreejs.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/looeee/threejs-csg/issues"
},
"homepage": "https://github.com/looeee/threejs-csg#readme",
"scripts": {
"start": "concurrently --names \"ESBUILD,HTTP\" -c \"bgBlue.bold,bgGreen.bold\" \"npm run serve\" \"npm run watch\"",
"serve": "servez -p 8080",
"watch": "node watch.mjs"
},
"devDependencies": {
"concurrently": "^6.3.0",
"esbuild": "^0.13.12",
"esbuild-glslify": "github:ayamflow/esbuild-glslify",
"servez": "^1.12.0"
},
"dependencies": {
"postprocessing": "^6.23.2",
"three": "^0.134.0"
}
}