-
Notifications
You must be signed in to change notification settings - Fork 59
/
package.json
39 lines (39 loc) · 1.25 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
{
"name": "audio-only-youtube",
"displayName": "Audio Only Youtube",
"version": "0.10.0",
"description": "Enables you to disable video streams on youtube and listen audio",
"engines": {
"node": ">=16.13.1"
},
"scripts": {
"build": "mkdir -p ./build/prod && webpack --config ./webpack/webpack.config.prod.js",
"start": "mkdir -p ./build/dev && webpack --config ./webpack/webpack.config.dev.js",
"lint": "eslint src/",
"prettier": "prettier 'src/**/*.@(js|json)' --write"
},
"dependencies": {
"copy-webpack-plugin": "^11.0.0",
"webpack": "^5.88.0",
"zip-webpack-plugin": "^4.0.1"
},
"devDependencies": {
"@babel/core": "^7.22.5",
"@babel/eslint-parser": "^7.22.5",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-proposal-function-bind": "^7.22.5",
"@babel/preset-env": "^7.22.5",
"@babel/preset-typescript": "^7.22.5",
"@types/chrome": "^0.0.238",
"babel-loader": "^9.1.2",
"eslint": "^8.43.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-standard": "^5.0.0",
"prettier": "^2.8.8",
"ts-loader": "^9.4.3",
"typescript": "^5.1.3",
"webpack-cli": "^5.1.4"
}
}