forked from mubaidr/vite-vue3-browser-extension-v3
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
90 lines (90 loc) · 2.72 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
84
85
86
87
88
89
90
{
"dependencies": {
"@babel/runtime": "^7.22.11",
"@codemirror/commands": "^6.2.5",
"@codemirror/lang-css": "^6.2.1",
"@codemirror/lang-html": "^6.4.5",
"@codemirror/lang-javascript": "^6.2.0",
"@codemirror/lang-json": "^6.0.1",
"@codemirror/state": "^6.2.1",
"@codemirror/theme-one-dark": "^6.1.2",
"@codemirror/view": "^6.16.0",
"@medv/finder": "^3.1.0",
"@types/glob": "^8.1.0",
"@types/throttle-debounce": "^5.0.0",
"@uiw/codemirror-theme-github": "^4.21.11",
"codemirror": "^6.0.1",
"dayjs": "^1.11.9",
"fast-glob": "^3.3.1",
"flowbite": "^1.8.1",
"functions-have-names": "^1.2.3",
"install": "^0.13.0",
"sizzle": "^2.3.10",
"throttle-debounce": "^5.0.0",
"vue": "^3.3.4",
"vue-router": "^4.2.4",
"webextension-polyfill": "^0.10.0"
},
"devDependencies": {
"@crxjs/vite-plugin": "2.0.0-beta.18",
"@iconify-json/mdi": "^1.1.54",
"@tailwindcss/forms": "^0.5.5",
"@types/chrome": "^0.0.243",
"@types/eslint": "^8.44.2",
"@types/eslint-config-prettier": "^6.11.0",
"@types/node": "^18.17.11",
"@typescript-eslint/eslint-plugin": "^6.4.1",
"@typescript-eslint/parser": "^6.4.1",
"@vitejs/plugin-vue": "^4.3.3",
"@vue/compiler-sfc": "^3.3.4",
"@vueuse/core": "^10.4.0",
"autoprefixer": "^10.4.15",
"eslint": "^8.48.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-vue": "^9.17.0",
"postcss": "^8.4.28",
"prettier": "^3.0.3",
"prettier-plugin-tailwindcss": "^0.4.1",
"rimraf": "^5.0.1",
"sass": "^1.66.1",
"stylelint": "^15.10.3",
"stylelint-config-standard": "^34.0.0",
"tailwindcss": "^3.3.3",
"terser": "^5.19.3",
"typescript": "^5.2.2",
"unplugin-auto-import": "^0.16.6",
"unplugin-icons": "^0.16.5",
"unplugin-vue-components": "^0.25.1",
"vite": "^4.4.9",
"vite-plugin-pages": "^0.31.0",
"vue-tsc": "^1.8.8",
"webext-bridge": "^6.0.1"
},
"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,
"scripts": {
"clean": "rimraf vite.config.ts.timestamp*.mjs && rimraf dist",
"build": "vite build",
"build:all": "pnpm build && pnpm build:elementSelector",
"build:elementSelector": "vite build --config vite.config.elementSelector.ts",
"dev": "pnpm build:elementSelector && vite",
"lint": "eslint . --fix --ext js,mjs,cjs,ts,mts,cts,vue",
"preview": "vite preview"
},
"type": "module",
"version": "0.0.1"
}