-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
64 lines (64 loc) · 1.73 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
{
"name": "github-better-line-counts",
"private": true,
"version": "1.7.1",
"packageManager": "bun@1.1.31",
"type": "module",
"scripts": {
"check": "check",
"dev": "wxt",
"dev:firefox": "wxt --browser firefox",
"build": "wxt build",
"build:firefox": "wxt build --browser firefox",
"test": "vitest",
"test:coverage": "vitest run --coverage",
"zip": "wxt zip",
"zip:firefox": "wxt zip -b firefox",
"prepare": "simple-git-hooks",
"postinstall": "wxt prepare"
},
"dependencies": {
"@aklinker1/check": "^1.4.5",
"@tanstack/vue-query": "^5.59.13",
"@webext-core/messaging": "^2.0.2",
"@webext-core/proxy-service": "^1.2.0",
"async-mutex": "^0.5.0",
"daisyui": "^4.12.13",
"fast-deep-equal": "^3.1.3",
"minimatch": "^10.0.1",
"ofetch": "^1.4.1"
},
"devDependencies": {
"@aklinker1/generate-changelog": "^1.1.2",
"@iconify/json": "^2.2.261",
"@types/bun": "^1.1.11",
"@types/chrome": "^0.0.278",
"@types/jsdom": "^21.1.7",
"@vitest/coverage-v8": "^2.1.3",
"@wxt-dev/auto-icons": "^1.0.2",
"@wxt-dev/i18n": "^0.2.1",
"@wxt-dev/module-vue": "^1.0.1",
"autoprefixer": "^10.4.20",
"env-cmd": "^10.1.0",
"fast-glob": "^3.3.2",
"jsdom": "^25.0.1",
"lint-staged": "^15.2.10",
"postcss": "^8.4.47",
"prettier": "^3.3.3",
"publish-browser-extension": "^2.2.2",
"simple-git-hooks": "^2.11.1",
"tailwindcss": "^3.4.14",
"typescript": "^5.6.3",
"unplugin-icons": "^0.19.3",
"vitest": "^2.1.3",
"vue": "^3.5.12",
"vue-tsc": "^2.1.6",
"wxt": "^0.19.11"
},
"simple-git-hooks": {
"pre-commit": "bun lint-staged"
},
"lint-staged": {
"*": "prettier --ignore-unknown --write"
}
}