forked from alextanhongpin/compress.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 802 Bytes
/
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
{
"name": "compress.js",
"version": "1.2.2",
"description": "A client side JavaScript image compression library",
"main": "src/index.js",
"type": "module",
"scripts": {
"dev": "webpack --watch",
"build": "webpack"
},
"author": "alextanhongpin",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.16.7",
"@babel/plugin-transform-modules-commonjs": "^7.16.7",
"@babel/preset-env": "^7.16.7",
"babel-loader": "^8.2.3",
"eslint": "^8.6.0",
"webpack": "^5.65.0",
"webpack-cli": "^4.9.1"
},
"keywords": [
"javascript",
"image",
"compression",
"base64"
],
"dependencies": {
"regenerator-runtime": "^0.13.9"
},
"repository": {
"type": "git",
"url": "https://github.com/alextanhongpin/compress.js.git"
}
}