-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.71 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "tab-backup",
"description": "Tab manager extension",
"version": "1.0.0",
"license": "Mozilla Public License 2.0",
"dependencies": {
"@tabler/icons-react": "^2.42.0",
"dayjs": "^1.11.10",
"prettier": "^3.1.0",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@babel/core": "^7.23.5",
"@babel/preset-env": "^7.23.5",
"@babel/preset-react": "^7.23.3",
"@webpack-cli/generators": "^3.0.7",
"autoprefixer": "^10.4.16",
"babel-loader": "^9.1.3",
"copy-webpack-plugin": "^11.0.0",
"css-loader": "^6.8.1",
"eslint": "^8.55.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"html-webpack-plugin": "^5.5.3",
"mini-css-extract-plugin": "^2.7.6",
"postcss": "^8.4.32",
"postcss-loader": "^7.3.3",
"postcss-preset-env": "^9.3.0",
"prettier-plugin-tailwindcss": "^0.5.7",
"style-loader": "^3.3.3",
"tailwindcss": "^3.3.5",
"web-ext": "^7.8.0",
"web-ext-plugin": "^2.9.0",
"web-ext-types": "^3.2.1",
"webpack": "^5.89.0",
"webpack-bundle-analyzer": "^4.10.1",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.1"
},
"scripts": {
"lint": "web-ext lint --source-dir ./src",
"start": "webpack -w",
"build": "webpack --mode production",
"sign-extension": "web-ext sign",
"build-extension": "web-ext build -s ./dist"
},
"webExt": {
"sourceDir": "src",
"run": {
"firefox": "/Applications/Firefox Developer Edition.app/Contents/MacOS/firefox",
"startUrl": [
"go.dev",
"github.com"
],
"devtools": false
},
"build": {
"overwriteDest": true
}
}
}