-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 2.2 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 2.2 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"private": true,
"scripts": {
"build": "rm -rf dist/*; parcel build",
"postinstall": "patch-package",
"watch": "parcel watch --no-hmr",
"load-web-ext": "yarn web-ext run --source-dir ./dist --devtools",
"dev": "test -d dist || yarn build; npm-run-all --parallel watch \"load-web-ext -- {@}\" --",
"bundle": "yarn build && yarn web-ext sign --source-dir ./dist"
},
"browserslist": [
"last 5 Chrome versions",
"last 5 Firefox versions"
],
"prettier": "@baltpeter/prettier-config",
"dependencies": {
"@datenanfragen/components": "^1.0.0-cssupdate0",
"@myriaddreamin/typst-ts-web-compiler": "0.4.1",
"cookie-es": "^1.2.2",
"preact": "^10.24.3",
"qs-esm": "^7.0.2",
"reporthar": "https://pkg.pr.new/reporthar@6b6face",
"trackhar": "^1.0.0",
"wouter-preact": "^3.3.5"
},
"devDependencies": {
"@babel/core": "^7.12.0",
"@babel/plugin-transform-react-jsx": "^7.25.9",
"@baltpeter/prettier-config": "^3.0.0",
"@baltpeter/tsconfig": "^3.0.0",
"@parcel/config-webextension": "^2.10.3",
"@types/firefox-webext-browser": "^120.0.0",
"@types/har-format": "^1.2.16",
"npm-run-all": "^4.1.5",
"parcel": "^2.10.3",
"patch-package": "^8.0.0",
"path-browserify": "^1.0.0",
"postinstall-postinstall": "^2.1.0",
"prettier": "^3.3.3",
"type-fest": "^4.35.0",
"typescript": "5.1.6",
"web-ext": "^7.9.0"
},
"@parcel/resolver-default": {
"packageExports": true
},
"alias": {
"react": "preact/compat",
"react-dom/test-utils": "preact/test-utils",
"react-dom": "preact/compat",
"react/jsx-runtime": "preact/jsx-runtime",
"preact/jsx-dev-runtime": "preact/jsx-runtime"
},
"targets": {
"default": {
"source": [
"src/manifest.json",
"src/ui.html",
"src/trackhar-sandbox.html",
"src/reporthar-sandbox.html"
],
"distDir": "./dist",
"sourceMap": false,
"optimize": false
}
}
}