UNPKG

stackblur-canvas

Version:

Fast and almost Gaussian blur by Mario Klingemann

68 lines 1.89 kB
{ "name": "stackblur-canvas", "version": "3.0.1", "description": "Fast and almost Gaussian blur by Mario Klingemann", "main": "dist/stackblur.js", "type": "module", "types": "./index.d.ts", "exports": { "import": { "types": "./index.d.ts", "default": "./dist/stackblur.mjs" }, "require": { "types": "./index.d.cts", "default": "./dist/stackblur.js" } }, "browserslist": { "target": "cover 100%" }, "repository": { "type": "git", "url": "https://github.com/flozz/StackBlur.git" }, "keywords": [ "stackblur", "blur", "canvas", "gaussian" ], "author": "Mario Klingemann", "homepage": "http://www.quasimondo.com/StackBlurForCanvas/StackBlurDemo.html", "contributors": [ "Brett Zamir" ], "license": "MIT", "bugs": { "url": "https://github.com/flozz/StackBlur/issues" }, "engines": { "node": ">=0.1.16" }, "devDependencies": { "@arethetypeswrong/cli": "^0.18.2", "@babel/core": "^7.29.0", "@babel/preset-env": "^7.29.0", "@rollup/plugin-babel": "^7.0.0", "@rollup/plugin-terser": "^1.0.0", "eslint": "^9.39.4", "eslint-config-ash-nazg": "39.11.1", "eslint-config-standard": "^17.1.0", "http-server": "^14.1.1", "jsdoc": "^3.6.5", "open-cli": "^8.0.0", "rollup": "4.59.0", "rollup-plugin-re": "^1.0.7" }, "scripts": { "attw": "attw --pack .", "start": "open-cli http://localhost:8081/demo/ && http-server -p 8081", "eslint": "eslint --ext=js,cjs,md,html .", "lint": "npm run eslint --", "rollup": "rollup -c", "docs": "rm -rf docs/jsdoc/*;jsdoc --pedantic -c docs/jsdoc-config.json src", "open-docs": "npm run docs && open-cli http://localhost:8081/docs/jsdoc/ && http-server -p 8081", "test": "npm run eslint && npm run rollup && echo \"Error: no test specified\" && exit 1" } }