-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 2.3 KB
/
Copy pathpackage.json
File metadata and controls
65 lines (65 loc) · 2.3 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
{
"name": "cache-cleaner",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "wxt",
"dev:ff": "wxt -b firefox --mv3",
"build": "wxt build",
"build:ff": "wxt build -b firefox --mv3",
"zip": "wxt zip",
"zip:ff": "wxt zip -b firefox --mv3",
"watch:ff": "nodemon --watch src -e js,ts,vue,css,html --exec \"npm run build:ff\"",
"android": "web-ext run -t firefox-android -s .output/firefox-mv3 --firefox-apk org.mozilla.firefox_beta --adb-device",
"docs": "npm run docs:dev",
"docs:build": "vitepress build docs",
"docs:dev": "vitepress dev docs",
"docs:preview": "vitepress preview docs",
"docs:deploy": "npm run get-contributors && npm run docs:build",
"get-contributors": "npx get-contributors cssnr/cache-cleaner -f docs/.vitepress/contributors.json",
"clean": "rm -rf .output",
"tsc": "vue-tsc --noEmit",
"prettier": "npm run prettier:write",
"prettier:check": "npx prettier --check .",
"prettier:write": "npx prettier --write .",
"lint": "npx eslint src docs",
"lint:web-ext": "npm run build:ff && npm run web-ext",
"web-ext": "npx web-ext lint --source-dir .output/firefox-mv3",
"package": "npm run tsc && npm run zip && npm run zip:ff",
"postinstall": "wxt prepare"
},
"dependencies": {
"@fortawesome/fontawesome-free": "^7.3.0",
"bootstrap": "^5.3.8",
"bootswatch": "^5.3.8",
"vue": "^3.5.39"
},
"devDependencies": {
"@catppuccin/vitepress": "github:catppuccin/vitepress#c8a6edc2a050899552f86e01b1301a547c84820f",
"@cssnr/vitepress-plugin-contributors": "^0.2.0",
"@cssnr/vitepress-swiper": "^0.3.1",
"@eslint/compat": "^2.1.0",
"@eslint/config-helpers": "^0.6.0",
"@eslint/js": "^10.0.1",
"@types/bootstrap": "^5.2.11",
"@types/chrome": "^0.2.2",
"@types/firefox-webext-browser": "^143.0.0",
"@wxt-dev/auto-icons": "^1.1.1",
"@wxt-dev/i18n": "^0.2.6",
"@wxt-dev/module-vue": "^1.0.3",
"animate.css": "^4.1.1",
"eslint": "^10.7.0",
"eslint-plugin-vue": "^10.9.2",
"nodemon": "^3.1.14",
"prettier": "^3.9.5",
"sass": "^1.101.0",
"typescript": "^6.0.3",
"typescript-eslint": "^8.63.0",
"vitepress": "next",
"vitepress-chat": "^0.0.4",
"vue-tsc": "^3.3.7",
"web-ext": "^10.5.0",
"wxt": "^0.20.27"
}
}