forked from pmndrs/postprocessing
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
129 lines (129 loc) · 3.48 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
{
"name": "postprocessing",
"version": "6.30.1",
"description": "A post processing library that provides the means to implement image filter effects for three.js.",
"homepage": "https://github.com/pmndrs/postprocessing",
"main": "build/postprocessing.js",
"module": "build/postprocessing.esm.js",
"exports": {
".": {
"import": "./build/postprocessing.esm.js",
"require": "./build/postprocessing.js",
"types": "./types/postprocessing.d.ts"
},
"./module": {
"import": "./build/postprocessing.mjs",
"types": "./types/postprocessing.d.ts"
}
},
"types": "types/postprocessing.d.ts",
"sideEffects": false,
"license": "Zlib",
"keywords": [
"rendering",
"image",
"filter",
"effect",
"composer",
"pass",
"post",
"processing",
"gpgpu",
"rtt",
"rendertexture",
"rendertarget",
"three"
],
"author": {
"name": "Raoul van Rüschen",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/pmndrs/postprocessing.git"
},
"bugs": {
"url": "https://github.com/pmndrs/postprocessing/issues"
},
"files": [
"build",
"types"
],
"engines": {
"node": ">= 0.13.2"
},
"scripts": {
"ava": "ava",
"build:css": "sass --no-source-map -I manual/assets/css/src/values manual/assets/css/src:manual/assets/css/dist",
"build:js": "node esbuild.mjs",
"build:js:min": "node esbuild.mjs -m",
"clean": "del-cli build tmp manual/resources manual/assets/**/dist public",
"copy": "copyfiles -u 2 \"demo/static/**/*\" public/demo",
"deploy": "run-s copy postcss hugo gzip",
"doc": "esdoc",
"gzip": "gzipper c public",
"hugo": "hugo -s manual --minify",
"lint": "run-s lint:*",
"lint:css": "stylelint --fix manual/assets/css/src",
"lint:js": "eslint --ext .js --fix src demo/src manual/assets/js/src",
"postcss": "postcss manual/assets/css/dist/index.css -o manual/assets/css/dist/index.css -c manual",
"prepublishOnly": "run-s test doc",
"prewatch": "run-s clean copy build:css build:js",
"test": "run-s clean lint build:css build:js:min ava",
"start": "hugo server -s manual -e development",
"watch": "run-p watch:* start",
"watch:css": "sass --no-source-map -I manual/assets/css/src/values manual/assets/css/src:manual/assets/css/dist -w",
"watch:eslint": "esw -w --ext .js --color src demo/src manual/assets/js/src",
"watch:js": "node esbuild.mjs -w"
},
"ava": {
"failFast": true,
"files": [
"test/**/*"
]
},
"eslintConfig": {
"extends": "aether"
},
"peerDependencies": {
"three": ">= 0.138.0 < 0.151.0"
},
"devDependencies": {
"@tweakpane/core": "1.x.x",
"@types/three": "0.x.x",
"@typescript-eslint/eslint-plugin": "5.x.x",
"@typescript-eslint/parser": "5.x.x",
"autoprefixer": "10.x.x",
"ava": "5.x.x",
"copyfiles": "2.x.x",
"cssnano": "5.x.x",
"dat.gui": "0.x.x",
"del-cli": "5.x.x",
"esbuild": "0.16.x",
"esbuild-plugin-glsl": "1.x.x",
"esbuild-ts-paths": "1.x.x",
"esdoc": "1.x.x",
"esdoc-importpath-plugin": "1.x.x",
"esdoc-standard-plugin": "1.x.x",
"eslint": "8.x.x",
"eslint-config-aether": "1.x.x",
"eslint-watch": "8.x.x",
"gzipper": "7.x.x",
"hugo-bin": "0.x.x",
"npm-run-all": "4.x.x",
"postcss": "8.x.x",
"postcss-cli": "10.x.x",
"postcss-preset-env": "8.x.x",
"sass": "1.x.x",
"spatial-controls": "5.x.x",
"stylelint": "15.x.x",
"stylelint-config-standard-scss": "7.x.x",
"stylelint-order": "6.x.x",
"three": "0.x.x",
"three-demo": "5.x.x",
"tiny-glob": "0.x.x",
"tslib": "2.x.x",
"tweakpane": "3.x.x",
"typescript": "4.x.x"
}
}