-
Notifications
You must be signed in to change notification settings - Fork 86
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.02 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.02 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
{
"name": "sqip-loader",
"version": "1.0.0-beta.2",
"type": "module",
"description": "Webpack/Turbopack loader for SQIP - SVG-Based Image Placeholder",
"author": "Benedikt Rötsch <benedikt@hashbite.net>",
"homepage": "https://github.com/axe312ger/sqip#readme",
"license": "MIT",
"types": "dist/index.d.ts",
"main": "dist/index.js",
"directories": {
"lib": "dist",
"test": "__tests__"
},
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/axe312ger/sqip.git"
},
"scripts": {
"build": "tsc -b",
"watch": "tsc -w",
"test": "echo \"Error: run tests from root\" && exit 1"
},
"bugs": {
"url": "https://github.com/axe312ger/sqip/issues"
},
"keywords": [
"sqip",
"webpack",
"turbopack",
"loader",
"lqip",
"svg",
"placeholder",
"images"
],
"dependencies": {
"sqip": "^1.0.0-beta.2"
},
"peerDependencies": {
"webpack": "^5.0.0"
},
"devDependencies": {
"@types/webpack": "^5.28.5"
}
}