-
-
Notifications
You must be signed in to change notification settings - Fork 225
/
Copy pathpackage.json
132 lines (132 loc) · 3.45 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
130
131
132
{
"name": "postprocessing",
"version": "6.37.1",
"description": "A post processing library for three.js.",
"homepage": "https://github.com/pmndrs/postprocessing",
"license": "Zlib",
"type": "module",
"sideEffects": false,
"main": "./build/index.cjs",
"module": "./build/index.js",
"types": "./build/types/index.d.cts",
"exports": {
".": {
"import": {
"types": "./build/types/index.d.ts",
"default": "./build/index.js"
},
"require": {
"types": "./build/types/index.d.cts",
"default": "./build/index.cjs"
}
}
},
"keywords": [
"rendering",
"image",
"filter",
"effect",
"composer",
"pass",
"post",
"processing",
"gpgpu",
"rtt",
"rendertexture",
"rendertarget",
"three"
],
"author": {
"name": "Raoul van Rüschen",
"email": "[email protected]"
},
"repository": {
"url": "git+https://github.com/pmndrs/postprocessing.git"
},
"bugs": {
"url": "https://github.com/pmndrs/postprocessing/issues"
},
"files": [
"./build"
],
"ava": {
"failFast": true,
"files": [
"./test/**/*"
]
},
"pnpm": {
"onlyBuiltDependencies": [
"@parcel/watcher",
"core-js",
"esbuild",
"hugo-bin"
]
},
"scripts": {
"ava": "ava",
"build": "npm run clean && run-p build:css build:js:min build:dts",
"build:css": "sass --no-source-map -I manual/assets/css/src/values manual/assets/css/src:manual/assets/css/dist",
"build:js": "node esbuild",
"build:js:min": "node esbuild -m",
"build:dts": "cpy \"types/*\" build/types && cpy \"types/*\" build/types --rename=index.d.cts",
"clean": "del-cli build temp manual/resources \"manual/assets/**/dist\" public",
"copy": "cpy \"demo/static/**/*\" public/demo",
"deploy": "run-s copy postcss hugo gzip",
"doc": "esdoc",
"gzip": "gzipper c \"public\"",
"hugo": "hugo -s manual --minify",
"lint": "run-p lint:*",
"lint:css": "stylelint --fix manual/assets/css/src",
"lint:js": "eslint --fix src demo/src manual/assets/js/src",
"lint:dts": "tsc types/index.d.ts --noEmit",
"postcss": "postcss manual/assets/css/dist/index.css -o manual/assets/css/dist/index.css -c manual",
"prepublishOnly": "npm test",
"prewatch": "run-s clean copy build:css build:js",
"test": "run-s lint build ava doc",
"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:js": "node esbuild -w"
},
"peerDependencies": {
"three": ">= 0.157.0 < 0.175.0"
},
"devDependencies": {
"@tweakpane/core": "2.x.x",
"@types/node": "22.x.x",
"@types/three": "0.x.x",
"@typescript-eslint/eslint-plugin": "8.x.x",
"@typescript-eslint/parser": "8.x.x",
"autoprefixer": "10.x.x",
"ava": "6.x.x",
"cpy-cli": "5.x.x",
"cssnano": "7.x.x",
"dat.gui": "0.x.x",
"del-cli": "6.x.x",
"esbuild": "0.25.x",
"esbuild-plugin-glsl": "1.x.x",
"esdoc": "1.x.x",
"esdoc-importpath-plugin": "1.x.x",
"esdoc-standard-plugin": "1.x.x",
"eslint": "9.x.x",
"eslint-config-aether": "2.x.x",
"gzipper": "8.x.x",
"hugo-bin": "0.x.x",
"npm-run-all": "4.x.x",
"postcss": "8.x.x",
"postcss-cli": "11.x.x",
"postcss-preset-env": "10.x.x",
"sass": "1.x.x",
"spatial-controls": "6.x.x",
"stylelint": "16.x.x",
"stylelint-config-standard-scss": "14.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": "4.x.x",
"typescript": "5.8.x"
}
}