-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
51 lines (51 loc) · 1.19 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
{
"name": "lqip-modern",
"version": "2.2.1",
"description": "Modern approach to Low Quality Image Placeholders (LQIP) using webp and sharp.",
"repository": "transitive-bullshit/lqip-modern",
"author": "Travis Fischer <[email protected]>",
"license": "MIT",
"engines": {
"node": ">=18"
},
"type": "module",
"main": "index.js",
"types": "index.d.ts",
"exports": {
"types": "./index.d.ts",
"default": "./index.js"
},
"sideEffects": false,
"files": [
"index.js",
"index.d.ts"
],
"scripts": {
"test": "run-s test:*",
"test:unit": "ava -v",
"test:lint": "eslint .",
"test:format": "prettier '**/*.{js,json,ts}' --check",
"demo": "serve demo",
"deploy": "gh-pages -d demo"
},
"dependencies": {
"p-map": "^7.0.2",
"sharp": "^0.33.5"
},
"devDependencies": {
"@fisch0920/eslint-config": "^1.4.0",
"ava": "^6.2.0",
"eslint": "^8.57.0",
"fs-extra": "^9.1.0",
"gh-pages": "^6.2.0",
"globby": "^11.0.3",
"npm-run-all2": "^7.0.0",
"prettier": "^3.3.3",
"serve": "^11.3.2",
"update-markdown-jsdoc": "^1.0.11"
},
"ava": {
"failFast": true,
"snapshotDir": "./.snapshots"
}
}