forked from vitorfhc/gecko
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.63 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.63 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
46
47
48
{
"name": "gecko",
"version": "0.1.0",
"main": "index.js",
"scripts": {
"build:chrome": "rm -rf dist && cp public/manifest-chrome.json public/manifest.json && webpack --mode production",
"build:ff": "rm -rf dist && cp public/manifest-ff.json public/manifest.json && webpack --mode production",
"build:dev": "cp public/manifest-chrome.json public/manifest.json && webpack",
"watch:chrome": "rm -rf dist && cp public/manifest-chrome.json public/manifest.json && webpack --watch",
"watch:ff": "rm -rf dist && cp public/manifest-ff.json public/manifest.json && webpack --watch"
},
"keywords": [],
"author": "Vitor Falcao <vitorfhcosta@gmail.com>",
"license": "ISC",
"description": "",
"devDependencies": {
"@babel/core": "^7.25.2",
"@babel/preset-env": "^7.25.4",
"@babel/preset-react": "^7.24.7",
"@babel/preset-typescript": "^7.24.7",
"@types/react": "^18.3.7",
"@types/react-dom": "^18.3.0",
"@types/webextension-polyfill": "^0.12.2",
"async-mutex": "^0.5.0",
"babel-loader": "^9.2.1",
"clean-webpack-plugin": "^4.0.0",
"copy-webpack-plugin": "^12.0.2",
"css-loader": "^7.1.2",
"postcss-loader": "^8.1.1",
"prettier": "3.3.3",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"style-loader": "^4.0.0",
"tailwindcss": "^3.4.12",
"ts-loader": "^9.5.1",
"typescript": "^5.6.2",
"webpack": "^5.94.0",
"webpack-cli": "^5.1.4",
"webpack-merge": "^6.0.1"
},
"dependencies": {
"@headlessui/react": "^2.1.8",
"@heroicons/react": "^2.1.5",
"autoprefixer": "^10.4.20",
"postcss": "^8.4.47",
"webextension-polyfill": "^0.10.0"
}
}