-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.76 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
{
"name": "multi-browser-extension-template",
"description": "This is an extension template for both chrome and firefox",
"version": "1.0",
"author": "Diana [email protected]",
"license": "MIT",
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/xN4P4LM-org/multi-browser-extension-template"
},
"scripts": {
"dev": "webpack watch --config ./webpack/webpack.dev.ts",
"build": "webpack --config ./webpack/webpack.prod.ts",
"cleanBuild": "scripts/pack.sh cleanBuild",
"package": "scripts/pack.sh",
"clean": "scripts/pack.sh clean",
"lint": "eslint --debug"
},
"browser": {
"chrome": "dist/manifest.json"
},
"dependencies": {
"react": "~18.3.1",
"react-dom": "~18.3.1",
"tailwindcss": "~3.4.4"
},
"devDependencies": {
"@eslint/compat": "~1.0.3",
"@eslint/js": "~9.4.0",
"@ianvs/prettier-plugin-sort-imports": "~4.2.1",
"@swc/cli": "~0.3.12",
"@swc/core": "~1.5.25",
"@types/chrome": "~0.0.268",
"@types/node": "~20.14.2",
"@types/react": "~18.3.3",
"@types/react-dom": "~18.3.0",
"@types/webextension-polyfill": "~0.10.7",
"autoprefixer": "~10.4.19",
"copy-webpack-plugin": "~12.0.2",
"css-loader": "~7.1.2",
"dotenv": "~16.4.5",
"eslint": "9.x",
"eslint-plugin-react": "~7.34.2",
"eslint-plugin-unused-imports": "~4.0.0",
"globals": "~15.4.0",
"postcss": "~8.4.33",
"postcss-loader": "~8.1.1",
"prettier": "~3.3.1",
"sass": "~1.77.4",
"sass-loader": "~14.2.1",
"style-loader": "~4.0.0",
"swc-loader": "~0.2.6",
"ts-loader": "~9.5.1",
"typescript": "~5.5.3",
"typescript-eslint": "~7.12.0",
"webextension-polyfill": "~0.12.0",
"webpack": "~5.91.0",
"webpack-cli": "~5.1.4"
}
}