-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
33 lines (33 loc) · 1.14 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
{
"name": "tab-control-center",
"version": "1.0.0",
"description": "Browser extension to control your tabs.",
"main": "index.js",
"devDependencies": {
"copy-webpack-plugin": "^12.0.2",
"eslint": "^8.57.0",
"rimraf": "^5.0.7",
"web-ext": "^7.11.0",
"webextension-polyfill": "^0.12.0",
"webpack": "^5.90.3",
"webpack-cli": "^5.1.4"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"clean": "rimraf ./dist && rimraf ./web-ext-artifacts",
"build:firefox": "webpack --env browser=firefox",
"build:chrome": "webpack --env browser=chrome",
"build:safari": "webpack --env browser=safari && xcrun safari-web-extension-converter ./dist --project-location ./dist --bundle-identifier com.robinlieb.TabControlCenter",
"package": "web-ext build --source-dir ./dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/robinlieb/tab-control-center.git"
},
"author": "Robin Lieb",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/robinlieb/tab-control-center/issues"
},
"homepage": "https://github.com/robinlieb/tab-control-center#readme"
}