-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.32 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
52
53
54
55
56
57
58
{
"name": "pixel-density-image-loader",
"version": "0.0.0",
"description": "Webpack plugin to load and resize images with pixel density",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "echo 'Build' && tsc",
"watch": "npm-watch",
"prepublishOnly": "npm run build"
},
"watch": {
"build": {
"patterns": [
"src"
],
"extensions": "ts",
"quiet": false
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/KrysKruk/pixel-density-image-loader.git"
},
"keywords": [
"webpack",
"plugin",
"image",
"pixel"
],
"author": {
"name": "Krystian Kruk",
"email": "kildyt@gmail.com"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/KrysKruk/pixel-density-image-loader/issues"
},
"homepage": "https://github.com/KrysKruk/pixel-density-image-loader#readme",
"dependencies": {
"@types/json-schema": "^7.0.4",
"@types/loader-utils": "^1.1.3",
"@types/node": "^13.5.0",
"@types/sharp": "^0.24.0",
"@types/webpack": "^4.41.3",
"json-schema": "^0.2.5",
"loader-utils": "^1.2.3",
"schema-utils": "^2.6.4",
"sharp": "^0.24.0"
},
"peerDependencies": {
"webpack": "^4.41.5"
},
"devDependencies": {
"npm-watch": "^0.6.0",
"typescript": "^3.7.5"
}
}