forked from veiz/twitter-video-downloader-extension
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 1.18 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
{
"name": "twitter-video-downloader-extension",
"version": "2.18.0",
"description": "Download twitter videos in best quality with one simple click",
"main": "index.js",
"scripts": {
"dev": "NODE_ENV=development node_modules/.bin/webpack --watch",
"build": "NODE_ENV=production node_modules/.bin/webpack",
"lint": "node_modules/.bin/eslint .",
"pretty": "node_modules/.bin/prettier --write src/**/*.{js,scss} --write ./*.{js,json}",
"zip": "zip -r extension.zip dist/*"
},
"author": "[email protected]",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.18.0",
"@babel/plugin-proposal-optional-chaining": "^7.17.12",
"@babel/plugin-transform-runtime": "^7.18.0",
"@babel/preset-env": "^7.18.0",
"babel-loader": "^8.2.5",
"copy-webpack-plugin": "^11.0.0",
"css-loader": "^6.7.1",
"eslint": "^8.16.0",
"html-loader": "^3.1.0",
"mini-css-extract-plugin": "^2.6.0",
"postcss-loader": "^7.0.0",
"prettier": "^2.6.2",
"sass": "^1.52.1",
"sass-loader": "^13.0.0",
"terser-webpack-plugin": "^5.3.1",
"webpack": "^5.72.1",
"webpack-cli": "^4.9.2"
},
"dependencies": {
"mustache": "^4.2.0"
}
}