-
-
Notifications
You must be signed in to change notification settings - Fork 94
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.76 KB
/
Copy pathpackage.json
File metadata and controls
83 lines (83 loc) · 2.76 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
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"description": "A Vue 3 + Vite project for building Chrome extensions",
"devDependencies": {
"@crxjs/vite-plugin": "^2.3.0",
"@eslint/compat": "^2.0.2",
"@eslint/js": "^9.0.0",
"@iconify-json/lucide": "^1.2.90",
"@iconify-json/ph": "^1.2.2",
"@iconify-json/svg-spinners": "^1.2.4",
"@intlify/unplugin-vue-i18n": "^11.0.3",
"@nuxt/ui": "^4.4.0",
"@tailwindcss/typography": "^0.5.19",
"@types/eslint": "^9.6.1",
"@types/node": "^25.2.3",
"@types/webextension-polyfill": "^0.12.4",
"@vitejs/plugin-vue": "^6.0.4",
"@vue/compiler-sfc": "^3.5.28",
"@vueuse/core": "^14.2.1",
"chalk": "^5.6.2",
"chrome-types": "^0.1.415",
"commander": "^14.0.3",
"concurrently": "^9.2.1",
"cross-env": "^10.1.0",
"dotenv": "^17.3.1",
"eslint": "^9.0.0",
"eslint-plugin-vue": "^10.8.0",
"get-installed-browsers": "^0.1.7",
"globals": "^17.3.0",
"marked": "^17.0.2",
"pinia": "^3.0.4",
"prettier": "^3.8.1",
"tailwindcss": "^4.1.18",
"terser": "^5.46.0",
"tsx": "^4.21.0",
"tw-animate-css": "^1.4.0",
"typescript": "^5.9.3",
"typescript-eslint": "^8.55.0",
"unplugin-imagemin": "^0.7.0",
"unplugin-turbo-console": "^2.3.0",
"vite": "^7.3.1",
"vite-plugin-vue-devtools": "^8.0.6",
"vite-plugin-zip-pack": "^1.2.4",
"vue": "^3.5.28",
"vue-i18n": "^11.2.8",
"vue-router": "^5.0.0",
"vue-tsc": "^3.2.4",
"web-ext": "^9.3.0",
"webext-bridge": "^6.0.1",
"webextension-polyfill": "^0.12.0"
},
"displayName": "Vite Vue 3 Chrome Extension",
"name": "vite-vue3-browser-extension-v3",
"overrides": {
"@crxjs/vite-plugin": "$@crxjs/vite-plugin"
},
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/mubaidr/vite-vue3-browser-extension-v3"
},
"scripts": {
"build": "npm run build:chrome && npm run build:firefox",
"build:chrome": "cross-env NODE_ENV=production vite build -c vite.chrome.config.ts",
"build:firefox": "cross-env NODE_ENV=production vite build -c vite.firefox.config.ts",
"dev": "concurrently \"npm run dev:chrome\" \"npm run dev:firefox\"",
"dev:chrome": "cross-env NODE_ENV=development vite -c vite.chrome.config.ts",
"dev:firefox": "cross-env NODE_ENV=development vite build --mode development --watch -c vite.firefox.config.ts",
"format": "prettier --write .",
"launch": "tsx scripts/launch.ts",
"launch:all": "tsx scripts/launch.ts --all",
"lint": "eslint . --fix --cache",
"lint:manifest": "web-ext lint --pretty",
"typecheck": "vue-tsc --noEmit"
},
"type": "module",
"version": "0.0.1",
"dependencies": {
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"lucide-vue-next": "^0.564.0",
"tailwind-merge": "^3.4.1"
}
}