forked from 0140454/hackbar
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 2.39 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 2.39 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
{
"name": "HackBar",
"description": "A browser extension for Penetration Testing",
"version": "1.0.4",
"private": true,
"scripts": {
"build:chrome": "vite build",
"build:firefox": "TARGET=firefox vite build",
"dev:ui": "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 zip ../${npm_package_name}-chrome.zip -FS -r .",
"dist:firefox": "run build:firefox && env -C dist zip ../${npm_package_name}-firefox.zip -FS -r ."
},
"dependencies": {
"@fontsource/roboto": "^4.5.8",
"@fontsource/roboto-mono": "^4.5.10",
"@mdi/js": "^7.1.96",
"@vueuse/core": "^9.12.0",
"crypto-js": "^4.1.1",
"curlconverter": "^4.4.1",
"highlight.js": "^11.7.0",
"http-z": "^6.1.2",
"vue": "^3.2.45",
"vuetify": "^3.1.3"
},
"devDependencies": {
"@esbuild-plugins/node-modules-polyfill": "^0.2.2",
"@rollup/plugin-commonjs": "^24.0.1",
"@rollup/plugin-virtual": "^3.0.1",
"@types/crypto-js": "^4.1.1",
"@types/glob": "^8.0.1",
"@types/lodash": "^4.14.191",
"@types/node": "^18.11.18",
"@types/webextension-polyfill": "^0.10.0",
"@typescript-eslint/eslint-plugin": "^5.50.0",
"@typescript-eslint/parser": "^5.50.0",
"@vitejs/plugin-vue": "^4.0.0",
"chrome-types": "^0.1.168",
"eslint": "^8.33.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-require-sort": "^1.3.0",
"eslint-plugin-vue": "^9.9.0",
"glob": "^8.1.0",
"lodash": "^4.17.21",
"prettier": "^2.8.3",
"sass": "^1.57.1",
"typescript": "^4.9.5",
"vite": "^4.0.4",
"vite-plugin-vuetify": "^1.0.2",
"vue-cli-plugin-vuetify": "^2.5.8",
"vue-tsc": "^1.0.24",
"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:^6.1.2#build/package-patches/http-z.patch"
},
"packageManager": "yarn@3.3.1"
}