-
Notifications
You must be signed in to change notification settings - Fork 63
/
package.json
67 lines (67 loc) · 2.49 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
{
"name": "HackBar",
"description": "A browser extension for Penetration Testing",
"version": "1.2.7",
"private": true,
"scripts": {
"build:chrome": "VITE_BUILD_TARGET=chrome vite build",
"build:firefox": "VITE_BUILD_TARGET=firefox vite build",
"dev:ui": "VITE_BUILD_TARGET=chrome vite",
"dev:server": "php -d allow_url_include=on -S 127.0.0.1:8888 -t contrib",
"lint": "eslint --ext .js,.ts,.vue ./src/ && prettier --check .",
"lint:fix": "eslint --fix --ext .js,.ts,.vue ./src/ && prettier --write .",
"types:check": "vue-tsc --noEmit",
"dist:chrome": "run build:chrome && env -C dist/chrome zip ../../${npm_package_name}-chrome.zip -FS -r .",
"dist:firefox": "run build:firefox && env -C dist/firefox zip ../../${npm_package_name}-firefox.zip -FS -r ."
},
"dependencies": {
"@fontsource/roboto": "^5.0.8",
"@fontsource/roboto-mono": "^5.0.16",
"@mdi/js": "^7.4.47",
"@vueuse/core": "^10.8.0",
"crypto-js": "^4.2.0",
"curlconverter": "^4.9.0",
"highlight.js": "^11.9.0",
"http-z": "^7.0.0",
"pinia": "^2.1.7",
"vue": "^3.4.19",
"vuetify": "^3.7.1"
},
"devDependencies": {
"@esbuild-plugins/node-modules-polyfill": "^0.2.2",
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-virtual": "^3.0.2",
"@types/crypto-js": "^4.2.2",
"@types/glob": "^8.1.0",
"@types/lodash": "^4.14.202",
"@types/node": "^20.11.20",
"@types/webextension-polyfill": "^0.10.7",
"@typescript-eslint/eslint-plugin": "^7.0.2",
"@typescript-eslint/parser": "^7.0.2",
"@vitejs/plugin-vue": "^5.0.4",
"chrome-types": "^0.1.269",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-require-sort": "^1.3.0",
"eslint-plugin-vue": "^9.22.0",
"glob": "^10.3.10",
"lodash": "^4.17.21",
"prettier": "^3.2.5",
"sass": "^1.71.1",
"typescript": "^5.3.3",
"vite": "^5.4.6",
"vite-plugin-vuetify": "^2.0.4",
"vue-cli-plugin-vuetify": "^2.5.8",
"vue-tsc": "^2.1.6",
"webextension-polyfill": "^0.10.0",
"yarn-upgrade-all": "^0.7.2"
},
"resolutions": {
"@types/webextension-polyfill": "patch:@types/webextension-polyfill@npm:^0.10.0#build/package-patches/@types-webextension-polyfill.patch",
"curlconverter": "exec:build/package-generators/curlconverter.js",
"http-z": "patch:http-z@npm:^7.0.0#build/package-patches/http-z.patch"
},
"packageManager": "[email protected]"
}