-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.72 KB
/
Copy pathpackage.json
File metadata and controls
61 lines (61 loc) · 1.72 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
{
"name": "caffeine",
"version": "0.1.0",
"private": true,
"description": "Prevent your device from sleeping",
"type": "module",
"scripts": {
"dev": "wxt",
"dev:firefox": "wxt -b firefox --mv3",
"dev:firefox:android": "pnpm build:firefox && web-ext run -t firefox-android --firefox-apk org.mozilla.fenix --source-dir .output/firefox-mv3 --adb-device adb-2A191FDH300FJB-RxZ3wJ._adb-tls-connect._tcp",
"build": "wxt build",
"build:firefox": "wxt build -b firefox --mv3",
"zip": "wxt zip",
"zip:firefox": "wxt zip -b firefox --mv3",
"compile": "tsc --noEmit",
"postinstall": "wxt prepare",
"test": "vitest",
"fmt": "oxfmt --write",
"fmt:check": "oxfmt --check",
"lint": "oxlint -c oxlint.json",
"lint:fix": "oxlint --fix -c oxlint.json",
"prepare": "husky"
},
"dependencies": {
"@tabler/icons-react": "^3.41.1",
"@tailwindcss/vite": "^4.3.0",
"clsx": "^2.1.1",
"react": "^19.2.5",
"react-dom": "^19.2.5",
"tailwind-merge": "^3.6.0",
"tailwindcss": "^4.2.1",
"tldts": "^7.4.5"
},
"devDependencies": {
"@testing-library/dom": "^10.4.1",
"@testing-library/react": "^16.3.2",
"@types/react": "^19.2.13",
"@types/react-dom": "^19.2.3",
"@wxt-dev/module-react": "^1.1.5",
"husky": "^9.1.7",
"jsdom": "^29.1.1",
"lint-staged": "^16.3.2",
"oxfmt": "^0.57.0",
"oxlint": "^1.72.0",
"typescript": "^6.0.3",
"vitest": "^4.1.5",
"web-ext": "^10.4.0",
"wxt": "^0.20.26"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,json,css,scss,md}": [
"oxfmt --write",
"oxlint --fix -c oxlint.json"
]
},
"engines": {
"node": "^24.0.0",
"pnpm": "^10.0.0"
},
"packageManager": "pnpm@10.29.3"
}