-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.51 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": "squoosh-webpack-plugin",
"version": "2.1.1",
"description": "A webpack plugin for squoosh",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"build:docs": "typedoc",
"prepare-publish": "ts-node ./scripts/prepare-publish.ts",
"run-publish": "npm run prepare-publish && npm publish ./npm --access public",
"test": "jest",
"test5": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bcheidemann/squoosh-webpack-plugin.git"
},
"keywords": [
"squoosh",
"webpack",
"plugin",
"image",
"compression"
],
"author": "Ben Heidemann",
"license": "ISC",
"bugs": {
"url": "https://github.com/bcheidemann/squoosh-webpack-plugin/issues"
},
"homepage": "https://squoosh-webpack-plugin.info/",
"peerDependencies": {
"webpack": "4.x || 5.x"
},
"devDependencies": {
"@babel/preset-env": "^7.16.11",
"@types/checksum": "^0.1.33",
"@types/fs-extra": "^9.0.13",
"@types/jest": "^27.4.1",
"@types/node": "^16.10.3",
"@types/uuid": "^8.3.1",
"@types/webpack4": "npm:@types/webpack@^4.41.26",
"@types/webpack5": "npm:@types/webpack@^5.28.0",
"babel-jest": "^27.5.1",
"jest": "^27.5.1",
"ts-jest": "^27.1.4",
"ts-node": "^10.3.0",
"typedoc": "^0.22.5",
"typescript": "^4.4.3",
"webpack4": "npm:webpack@^4.46.0",
"webpack5": "npm:webpack@^5.72.0"
},
"dependencies": {
"@squoosh/lib": "^0.4.0",
"fs-extra": "^10.0.0",
"uuid": "^8.3.2",
"checksum": "^1.0.0"
}
}