This project manages its dependencies using npm. Learn more
package.json 3.25 KB
{
	"name": "postprocessing",
	"version": "6.32.0",
	"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": "./types/index.d.ts",
	"exports": {
		".": {
			"types": "./types/index.d.ts",
			"import": "./build/index.js",
			"require": "./build/index.cjs"
		}
	},
	"keywords": [
		"rendering",
		"image",
		"filter",
		"effect",
		"composer",
		"pass",
		"post",
		"processing",
		"gpgpu",
		"rtt",
		"rendertexture",
		"rendertarget",
		"three"
	],
	"author": {
		"name": "Raoul van Rüschen",
		"email": "vanruesc@outlook.de"
	},
	"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",
		"build:js:min": "node esbuild -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 -w"
	},
	"ava": {
		"failFast": true,
		"files": [
			"./test/**/*"
		]
	},
	"eslintConfig": {
		"extends": "aether"
	},
	"peerDependencies": {
		"three": ">= 0.138.0 < 0.154.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.17.x",
		"esbuild-plugin-glsl": "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": "5.x.x"
	}
}