-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
28 lines (28 loc) · 963 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
{
"name": "media-downloader-extension",
"version": "1.0.0",
"description": "A Chrome extension that helps you download videos and images from web pages. The extension automatically detects media files and provides an easy-to-use interface for downloading them individually or in bulk.",
"main": "index.js",
"directories": {
"lib": "lib"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"clean": "rm -rf dist && rm -rf build && rm -rf node_modules",
"build": "webpack --config webpack.config.js",
"watch": "webpack --watch --config webpack.config.js",
"dev": "webpack --mode development",
"prod": "webpack --mode production"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.26.0",
"@babel/preset-env": "^7.26.0",
"babel-loader": "^9.2.1",
"copy-webpack-plugin": "^12.0.2",
"webpack": "^5.97.1",
"webpack-cli": "^6.0.1"
}
}