-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
30 lines (30 loc) · 1.26 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
{
"name": "stackovershits",
"version": "1.0.0",
"description": "Google search cleaner for shitty stackoverflow clones",
"repository": "[email protected]:yarfuo/overshits.git",
"author": "Yarfuo <[email protected]>",
"license": "MIT",
"private": false,
"scripts": {
"lint:web-ext": "web-ext lint",
"watch": "webpack --watch",
"build-dev": "webpack --mode=development && web-ext build -s dist --artifacts-dir=build --overwrite-dest",
"build-release": "webpack --mode=production && web-ext build -s dist --artifacts-dir=build --overwrite-dest",
"start:firefox": "web-ext run -i 'node_modules/*' -t firefox-desktop -s dist -u https://google.com/search?q=site:qastack.ru",
"start:chromium": "web-ext run -i 'node_modules/*' -t chromium -s dist -u https://google.com/search?q=site:qastack.ru",
"pack-source": "mkdir -p build && zip -r build/source.zip . -x 'build/*' -x 'dist/*' -x '.idea/*' -x '.git/*' -x 'node_modules/*' -x .DS_Store"
},
"devDependencies": {
"typescript": "^4.3.5",
"web-ext": "^6.2.0",
"webpack": "^5.44.0",
"webpack-cli": "^4.7.2"
},
"dependencies": {
"clean-webpack-plugin": "^4.0.0-alpha.0",
"copy-webpack-plugin": "^9.0.1",
"ts-loader": "^9.2.5",
"webextension-polyfill-ts": "^0.26.0"
}
}