-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 1.6 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
{
"author": "Park9eon",
"description": "유튜브 영상 가리기, 귀여운 고양이 Progress Bar, Picture in Picture 퀵버튼 기능",
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.2.2",
"@babel/preset-env": "^7.2.3",
"babel-loader": "^8.0.4",
"chrome-launcher": "^0.10.5",
"clean-webpack-plugin": "^1.0.1",
"concurrently": "^4.1.0",
"copy-webpack-plugin": "^4.6.0",
"css-loader": "^2.1.0",
"style-loader": "^0.23.1",
"web-ext": "^3.1.1",
"webpack": "^4.28.3",
"webpack-cli": "^3.2.0"
},
"license": "MIT",
"name": "youtube-helper",
"private": true,
"scripts": {
"open:firefox": "web-ext run --source-dir ./dist/ --firefox=nightly --keep-profile-changes --verbose",
"open:chrome": "node scripts/chrome_launcher.js --chromePath /Applications/Chrome.app/Contents/MacOS/Google\\ Chrome",
"open:whale": "node scripts/chrome_launcher.js --chromePath /Applications/Whale.app/Contents/MacOS/Whale",
"watch": "webpack --watch --mode=development",
"build": "webpack --mode=production",
"firefox": "concurrently -k -p \"[{name}]\" -n \"webpack,firefox\" -c \"yellow.bold,cyan.bold\" \"yarn watch\" \"yarn open:firefox\"",
"chrome": "concurrently -k -p \"[{name}]\" -n \"webpack,firefox\" -c \"yellow.bold,cyan.bold\" \"yarn watch\" \"yarn open:chrome\"",
"whale": "concurrently -k -p \"[{name}]\" -n \"webpack,firefox\" -c \"yellow.bold,cyan.bold\" \"yarn watch\" \"yarn open:whale\"",
"compress:firefox": "yarn build && web-ext lint --source-dir ./dist/ && web-ext build --source-dir ./dist/"
},
"version": "1.1.1"
}