-
Notifications
You must be signed in to change notification settings - Fork 125
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.89 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 1.89 KB
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
{
"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%"
},
"scripts": {
"prepublishOnly": "npm run attw && pnpm i",
"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"
},
"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"
}
}