-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 1.07 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
{
"name": "Comics / Manga Downloader",
"version": "1.2.1",
"description": "A cross browser extension to download comics / manga as pdf file from any site.",
"author": "Saptarshi Mondal <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/saptarshimondal/Comics-Manga-Downloader-Extension"
},
"scripts": {
"start": "webpack --config webpack.config.js",
"dev": "webpack -w --config webpack.config.js",
"ext": "web-ext run --source-dir ./dist/",
"pack-ext": "web-ext build --overwrite-dest --source-dir ./dist"
},
"devDependencies": {
"@babel/core": "^7.18.2",
"@babel/preset-env": "^7.18.2",
"babel-loader": "^8.2.5",
"clean-webpack-plugin": "^4.0.0",
"copy-webpack-plugin": "^11.0.0",
"html-loader": "^3.1.0",
"html-webpack-plugin": "^5.5.0",
"imports-loader": "^4.0.0",
"web-ext": "^6.8.0",
"webextension-polyfill": "^0.9.0",
"webpack": "^5.73.0",
"webpack-cli": "^4.9.2"
},
"dependencies": {
"file-saver": "^2.0.5",
"jspdf": "^2.5.1"
}
}