-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
81 lines (81 loc) · 3.15 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "co2estimeter",
"version": "1.0.4",
"description": "Web extension for estimating the CO2 emissions of browsing activity",
"private": true,
"repository": "",
"author": {
"name": "Alexander zur Bonsen",
"email": "[email protected]",
"url": "https://github.com/alexzurbonsen/co2estimeter"
},
"license": "Apache-2.0",
"engines": {
"node": ">=22.0.0"
},
"packageManager": "[email protected]",
"scripts": {
"dev:chrome": "webpack --env mode=development --env browser=chrome --watch",
"dev:firefox": "webpack --env mode=development --env browser=firefox && web-ext run --source-dir extension/firefox --verbose",
"build:chrome": "webpack --env mode=production --env browser=chrome",
"build:firefox": "webpack --env mode=production --env browser=firefox",
"build": "pnpm run build:chrome && pnpm run build:firefox",
"clean": "rm -rf ./extension",
"copyright-lint-check": "reuse lint",
"format": "prettier --write --ignore-unknown .",
"format-check": "prettier --check --ignore-unknown .",
"lint": "eslint -c .eslintrc.js \"src\" --fix --ext .ts,.tsx",
"lint-check": "eslint -c .eslintrc.js \"src\" --ext .ts,.tsx",
"lint-extension:chrome": "web-ext --source-dir extension/chrome lint",
"lint-extension:firefox": "web-ext --source-dir extension/firefox lint",
"precommit": "pnpm format && pnpm lint-check && pnpm typecheck",
"typecheck": "tsc -p ./ --noEmit"
},
"devDependencies": {
"@tanstack/eslint-plugin-query": "^5.51.15",
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@types/chrome": "^0.0.269",
"@types/color-convert": "^2.0.3",
"@types/firefox-webext-browser": "^120.0.4",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@types/tgwf__co2": "^0.14.2",
"@types/webextension-polyfill": "^0.10.7",
"@typescript-eslint/eslint-plugin": "^7.16.0",
"@typescript-eslint/parser": "^7.16.0",
"@webextension-toolbox/webextension-toolbox": "^7.1.1",
"@webextension-toolbox/webpack-webextension-plugin": "github:alexzurbonsen/webpack-webextension-plugin#allow-manifests-with-jsonc",
"clean-webpack-plugin": "^4.0.0",
"copy-webpack-plugin": "^12.0.2",
"css-minimizer-webpack-plugin": "^7.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-filenames": "^1.3.2",
"eslint-plugin-react": "^7.34.4",
"eslint-plugin-react-hooks": "^4.6.2",
"filemanager-webpack-plugin": "^8.0.0",
"json5": "^2.2.3",
"prettier": "^3.3.3",
"prettier-plugin-sh": "^0.14.0",
"terser-webpack-plugin": "^5.3.10",
"transform-json-webpack-plugin": "^0.0.2",
"ts-loader": "^9.5.1",
"typescript": "^5.5.3",
"web-ext": "^8.2.0",
"webpack": "^5.93.0",
"webpack-cli": "^5.1.4"
},
"dependencies": {
"@emotion/react": "^11.13.0",
"@emotion/styled": "^11.13.0",
"@mui/icons-material": "^5.16.7",
"@mui/material": "^5.16.6",
"@nivo/pie": "^0.87.0",
"@tgwf/co2": "^0.16.0",
"color-convert": "^2.0.1",
"grasp": "github:hoernschen/grasp#8945030",
"html-webpack-plugin": "^5.6.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"webextension-polyfill": "^0.12.0"
}
}