-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
59 lines (59 loc) · 1.34 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
57
58
59
{
"name": "t3d-effect-composer",
"version": "0.3.1",
"description": "EffectComposer for t3d.js",
"type": "module",
"main": "./build/t3d.effectcomposer.js",
"module": "./build/t3d.effectcomposer.module.js",
"exports": {
".": "./build/t3d.effectcomposer.module.js",
"./src/*": "./src/*",
"./examples/jsm/*": "./examples/jsm/*",
"./addons/*": "./examples/jsm/*"
},
"repository": {
"type": "git",
"url": "https://github.com/uinosoft/t3d-effect-composer"
},
"files": [
"build",
"examples/jsm",
"LICENSE",
"package.json",
"README.md",
"src"
],
"keywords": [
"postprocessing",
"t3d",
"javascript",
"3d",
"webgl",
"webgl2",
"canvas",
"html5"
],
"author": "uino",
"license": "BSD-3-Clause",
"devDependencies": {
"@babel/core": "^7.18.10",
"@babel/preset-env": "^7.18.10",
"@rollup/plugin-babel": "^6.0.3",
"@rollup/plugin-terser": "^0.4.0",
"eslint": "^8.57.0",
"eslint-plugin-html": "^8.1.1",
"eslint-plugin-import": "^2.29.0",
"rollup": "^4.18.0"
},
"peerDependencies": {
"t3d": "^0.3.0"
},
"scripts": {
"dev": "rollup -c -w",
"build": "rollup -c",
"lint": "eslint src",
"lint-fix": "eslint src --fix",
"lint-addons": "eslint examples/jsm",
"lint-examples": "eslint examples --ext .html"
}
}