-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
44 lines (44 loc) · 985 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
44
{
"name": "three-wboit",
"version": "1.0.15",
"description": "Weighted, blended order independent transparency pass for use with three.js.",
"module": "src/index.js",
"main": "build/index.umd.cjs",
"type": "module",
"scripts": {
"build": "rollup -c",
"prepublishOnly": "npm run build"
},
"files": [
"src/*",
"build/*"
],
"keywords": [
"order-independent-transparency",
"weighted-blended",
"wboit",
"oit",
"mesh",
"graphics",
"threejs",
"three-js"
],
"repository": {
"type": "git",
"url": "git+https://github.com/stevinz/three-wboit.git"
},
"author": "Stephens Nunnally <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/stevinz/three-wboit/issues"
},
"homepage": "https://github.com/stevinz/three-wboit",
"peerDependencies": {
"three": ">= 0.125.0"
},
"devDependencies": {
"rollup": "^2.58.0",
"three": "^0.125.0"
},
"private": false
}