-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.59 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.59 KB
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
40
41
42
43
44
45
{
"name": "twitch_chat_overlay",
"version": "1.0.8",
"description": "Anu Twitch Chat Overlay",
"main": "app.js",
"scripts": {
"package:chrome": "shx rm -rf dist/chrome && shx cp -rf src/chrome dist/chrome && shx cp -rf src/options.html dist/chrome/options.html && shx cp -rf src/assets dist/chrome/assets && shx cp dist/*.js dist/chrome && cd dist/chrome && 7z a -r ./twitch_chat_overlay.zip",
"package:firefox": "shx rm -rf dist/firefox && shx cp -rf src/firefox dist/firefox && shx cp -rf src/options.html dist/firefox/options.html && shx cp -rf src/assets dist/firefox/assets && shx cp dist/*.js dist/firefox && cd dist/firefox && 7z a -r ./twitch_chat_overlay.zip",
"build": "webpack",
"build:all": "npm run build && npm run package:chrome && npm run package:firefox"
},
"repository": {
"type": "git",
"url": "git+https://github.com/akhanubis/anu_twitch_chat_overlay.git"
},
"keywords": [
"twitch",
"chat",
"chrome",
"extension",
"firefox",
"add-on"
],
"author": "Pablo Bianciotto",
"license": "ISC",
"bugs": {
"url": "https://github.com/akhanubis/anu_twitch_chat_overlay/issues"
},
"homepage": "https://github.com/akhanubis/anu_twitch_chat_overlay#readme",
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.9.0",
"@babel/preset-env": "^7.9.5",
"shx": "^0.3.2",
"webpack": "^4.42.1",
"webpack-cli": "^3.3.11"
},
"dependencies": {
"@babel/polyfill": "^7.8.7",
"@jaames/iro": "^5.1.5",
"babel-loader": "^8.1.0",
"iro-transparency-plugin": "^1.0.2",
"micromodal": "^0.4.6"
}
}