-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 2.59 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 2.59 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
68
69
70
{
"name": "headertweaker",
"version": "1.1.1",
"description": "Lightweight browser extension that lets you easily modify outgoing HTTP headers",
"main": "dist/headertweaker.html",
"author": "Maurice Kappelhof",
"license": "MIT",
"private": false,
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/mkappelhof/HeaderTweaker.git"
},
"packageManager": "pnpm@10.17.1",
"engines": {
"node": ">=20",
"pnpm": ">=10"
},
"dependencies": {
"@heroicons/react": "2.2.0",
"clsx": "2.1.1",
"react": "18.2.0",
"react-compiler-runtime": "^1.0.0",
"react-dom": "18.2.0",
"uuid": "11.1.0"
},
"devDependencies": {
"@biomejs/biome": "2.2.0",
"@changesets/cli": "2.29.6",
"@types/chrome": "0.1.4",
"@types/firefox-webext-browser": "120.0.4",
"@types/node": "24.5.2",
"@types/react": "19.1.12",
"@types/react-dom": "19.1.9",
"@vitejs/plugin-react": "5.0.2",
"babel-plugin-react-compiler": "^1.0.0",
"husky": "9.1.7",
"rimraf": "6.0.1",
"sass": "1.70.0",
"stylelint": "16.23.1",
"stylelint-config-recommended-scss": "16.0.0",
"stylelint-config-standard": "39.0.0",
"stylelint-scss": "6.12.1",
"typescript": "5.9.2",
"vite": "5.0.0",
"web-ext": "8.9.0"
},
"scripts": {
"dev:firefox": "BROWSER=firefox vite build && web-ext run --source-dir=dist/firefox --watch-files=dist/firefox/*",
"dev:firefox:console": "BROWSER=firefox vite build && web-ext run --source-dir=dist/firefox --watch-files=dist/firefox/* --browser-console",
"build:firefox": "BROWSER=firefox vite build",
"dev:chrome": "BROWSER=chrome vite build && web-ext run --target=chromium --source-dir=dist/chrome --watch-files=dist/chrome/*",
"dev:chrome:console": "BROWSER=chrome vite build && web-ext run --target=chromium --source-dir=dist/chrome --watch-files=dist/chrome/* --browser-console",
"build:chrome": "BROWSER=chrome vite build",
"build:all": "pnpm run build:firefox && pnpm run build:chrome",
"change": "changeset",
"lint": "biome lint .",
"lint:fix": "biome lint . --fix",
"format": "biome format . && stylelint 'src/**/*.scss'",
"format:fix": "biome format . --fix && stylelint --fix 'src/**/*.scss'",
"format-n-lint": "pnpm lint && pnpm format",
"format-n-lint:fix": "pnpm lint:fix && pnpm format:fix",
"check": "biome check .",
"check-types": "tsc --noEmit",
"clean": "rimraf dist node_modules web-ext-artifacts",
"web-ext:run": "web-ext run --source-dir=dist",
"web-ext:build": "web-ext build --source-dir=dist",
"prepare": "husky"
}
}