-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
56 lines (56 loc) · 1.73 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
45
46
47
48
49
50
51
52
53
54
55
56
{
"name": "three.tdl.particle.system",
"version": "1.0.3",
"description": "GPU based particle system for three.js. Heavily based on tdl library (https://github.com/greggman/tdl)",
"main": "build/three-tdl-particle-system.js",
"module": "build/three-tdl-particle-system.module.js",
"repository": {
"type": "git",
"url": "https://github.com/fazeaction/three-gpu-particle-system"
},
"keywords": [
"threejs",
"tdl",
"particles",
"particle system",
"gpu"
],
"sideEffects": false,
"files": [
"build/three-tdl-particle-system.js",
"build/three-tdl-particle-system.min.js",
"build/three-tdl-particle-system.module.js",
"package.json",
"README.md",
"src"
],
"scripts": {
"build": "rollup -c rollup.config.js",
"dev": "concurrently --names \"ROLLUP,HTTP\" -c \"bgBlue.bold,bgGreen.bold\" \"rollup -c rollup.config.js -w -m inline\" \"servez -p 8080\"",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "fazeaction",
"license": "MIT",
"bugs": {
"url": "https://github.com/fazeaction/three-gpu-particle-system/issues"
},
"homepage": "https://github.com/fazeaction/three-gpu-particle-system#readme",
"devDependencies": {
"@babel/core": "^7.13.8",
"@babel/plugin-proposal-class-properties": "^7.13.0",
"@babel/preset-env": "^7.13.9",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-node-resolve": "^11.2.0",
"concurrently": "^5.3.0",
"eslint": "^7.21.0",
"eslint-config-mdcs": "^5.0.0",
"eslint-plugin-html": "^6.1.2",
"rollup": "^2.40.0",
"rollup-plugin-filesize": "^9.1.1",
"rollup-plugin-terser": "^7.0.2",
"servez": "^1.11.0"
},
"peerDependencies": {
"three": ">= 0.102.0 < 0.137.0"
}
}