-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
121 lines (121 loc) · 3.74 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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
{
"name": "historymap",
"displayName": "HistoryMap",
"type": "module",
"version": "0.0.1",
"private": true,
"description": "A map of the visited tabs and their links",
"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"
},
"dependencies": {
"@antfu/eslint-config": "^4.2.1",
"@maxgraph/core": "^0.15.1",
"@mozilla/readability": "^0.5.0",
"@vue-flow/core": "^1.42.1",
"@vue-flow/node-toolbar": "^1.1.0",
"d3": "^7.9.0",
"element-plus": "^2.9.3",
"lint-staged": "^15.4.3",
"marked": "^15.0.6",
"notivue": "^2.4.5",
"pinia": "^2.3.0",
"uuid": "^11.0.5",
"vue": "^3.5.13",
"vue-i18n": "^11.0.1",
"vue-router": "^4.5.0",
"webextension-polyfill": "^0.12.0"
},
"devDependencies": {
"@crxjs/vite-plugin": "2.0.0-beta.31",
"@eslint/compat": "^1.2.4",
"@eslint/js": "^9.17.0",
"@iconify-json/carbon": "^1.2.5",
"@iconify-json/lucide": "^1.2.22",
"@iconify-json/mdi": "^1.2.2",
"@iconify-json/ph": "^1.2.2",
"@iconify-json/svg-spinners": "^1.2.2",
"@intlify/unplugin-vue-i18n": "^6.0.3",
"@tailwindcss/forms": "^0.5.10",
"@tailwindcss/typography": "^0.5.16",
"@types/chrome": "^0.0.299",
"@types/eslint": "^9.6.1",
"@types/eslint__js": "~8.42.3",
"@types/node": "^22.10.5",
"@types/webextension-polyfill": "^0.12.1",
"@vitejs/plugin-vue": "^5.2.1",
"@vue/compiler-sfc": "^3.5.13",
"@vueuse/core": "^12.3.0",
"autoprefixer": "^10.4.20",
"chalk": "^5.4.1",
"chrome-types": "^0.1.329",
"commander": "^13.0.0",
"concurrently": "^9.1.2",
"cross-env": "^7.0.3",
"daisyui": "^4.12.23",
"dotenv": "^16.4.7",
"eslint": "^9.17.0",
"eslint-plugin-tailwindcss": "^3.18.0",
"eslint-plugin-vue": "^9.32.0",
"get-installed-browsers": "^0.1.7",
"globals": "^15.14.0",
"postcss": "^8.4.49",
"prettier": "^3.4.2",
"prettier-plugin-tailwindcss": "^0.6.9",
"sass": "^1.83.1",
"tailwindcss": "^3.4.17",
"terser": "^5.37.0",
"tsx": "^4.19.2",
"typescript": "^5.7.3",
"typescript-eslint": "^8.19.1",
"unocss": "^65.4.3",
"unplugin-auto-import": "^19.0.0",
"unplugin-icons": "^22.0.0",
"unplugin-imagemin": "^0.6.5",
"unplugin-turbo-console": "^1.11.1",
"unplugin-vue-components": "^28.0.0",
"unplugin-vue-router": "^0.10.9",
"vite": "^6.0.7",
"vite-plugin-html": "^3.2.2",
"vite-plugin-vue-devtools": "^7.7.0",
"vite-plugin-zip-pack": "^1.2.4",
"vue-tsc": "^2.2.0",
"vuefire": "^3.2.1",
"web-ext": "^8.3.0",
"webext-bridge": "^6.0.1"
},
"pnpm": {
"overrides": {},
"peerDependencyRules": {
"allowAny": [],
"allowedDeprecatedVersions": {
"sourcemap-codec": "1.4.8"
},
"allowedVersions": {
"node-fetch": "*"
},
"ignoreMissing": []
}
},
"overrides": {
"@crxjs/vite-plugin": "$@crxjs/vite-plugin"
},
"lint-staged": {
"*": "eslint --fix"
}
}