-
-
Notifications
You must be signed in to change notification settings - Fork 66
/
package.json
83 lines (83 loc) · 2.51 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"dependencies": {
"marked": "^14.1.3",
"pinia": "^2.2.4",
"vue": "^3.5.12",
"vue-router": "^4.4.5",
"webextension-polyfill": "^0.12.0"
},
"description": "A Vue 3 + Vite project for building Chrome extensions",
"devDependencies": {
"@antfu/eslint-config": "^3.8.0",
"@crxjs/vite-plugin": "^2.0.0-beta.28",
"@iconify-json/mdi": "^1.2.1",
"@tailwindcss/forms": "^0.5.9",
"@tailwindcss/typography": "^0.5.15",
"@types/eslint": "^9.6.1",
"@types/node": "^22.7.8",
"@types/webextension-polyfill": "^0.12.1",
"@vitejs/plugin-vue": "^5.1.4",
"@vue/compiler-sfc": "^3.5.12",
"@vueuse/core": "^11.1.0",
"autoprefixer": "^10.4.20",
"chrome-types": "^0.1.312",
"concurrently": "^9.0.1",
"cross-env": "^7.0.3",
"daisyui": "^4.12.13",
"eslint": "^9.13.0",
"globals": "^15.11.0",
"postcss": "^8.4.47",
"prettier": "^3.3.3",
"prettier-plugin-tailwindcss": "^0.6.8",
"sass": "^1.80.3",
"tailwindcss": "^3.4.14",
"terser": "^5.36.0",
"typescript": "^5.6.3",
"unplugin-auto-import": "^0.18.3",
"unplugin-icons": "^0.19.3",
"unplugin-vue-components": "^0.27.4",
"unplugin-vue-router": "^0.10.8",
"vite": "^5.4.10",
"vite-plugin-pages": "^0.32.3",
"vite-plugin-vue-devtools": "^7.5.3",
"vue-tsc": "^2.1.6",
"web-ext": "^8.3.0",
"webext-bridge": "^6.0.1"
},
"displayName": "Vite Vue 3 Chrome Extension",
"name": "vite-vue3-chrome-extension-v3",
"overrides": {
"@crxjs/vite-plugin": "$@crxjs/vite-plugin"
},
"pnpm": {
"overrides": {},
"peerDependencyRules": {
"allowAny": [],
"allowedDeprecatedVersions": {
"sourcemap-codec": "1.4.8"
},
"allowedVersions": {},
"ignoreMissing": []
}
},
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/mubaidr/vite-vue3-chrome-extension-v3"
},
"scripts": {
"build": "npm run build:chrome && npm run build:firefox",
"build:chrome": "vite build -c vite.chrome.config.ts",
"build:firefox": "vite build -c vite.firefox.config.ts",
"dev": "concurrently \"npm run dev:chrome\" \"npm run dev:firefox\"",
"dev:chrome": "vite -c vite.chrome.config.ts",
"dev:firefox": "vite build --mode development --watch -c vite.firefox.config.ts",
"format": "prettier --write .",
"lint": "eslint . --fix",
"lint:manifest": "web-ext lint --pretty",
"preview": "vite preview",
"typecheck": "vue-tsc --noEmit"
},
"type": "module",
"version": "0.0.1"
}