-
-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
74 lines (74 loc) · 2.68 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
{
"name": "pihole-browser-extension",
"version": "3.1.0",
"dependencies": {
"@vue/composition-api": "^1.4.0",
"axios": "^1.7.8",
"vue": "^2.6.14",
"vue-debounce": "^3.0.1",
"vue-router": "^3.5.3",
"vuetify": "^2.5.14"
},
"devDependencies": {
"@mdi/js": "^6.5.95",
"@types/chrome": "^0.0.270",
"@types/copy-webpack-plugin": "8.0.0",
"@types/firefox-webext-browser": "^82.0.0",
"@types/zip-webpack-plugin": "^3.0.1",
"@typescript-eslint/eslint-plugin": "^4.22.0",
"@typescript-eslint/parser": "^4.22.0",
"copy-webpack-plugin": "^9.0.0",
"cross-env": "^7.0.3",
"css-loader": "^6.5.1",
"deepmerge": "^4.2.2",
"eslint": "^7.27.0",
"eslint-config-airbnb-typescript": "^12.3.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.23.3",
"eslint-plugin-vue": "^7.9.0",
"eslint-webpack-plugin": "^2.5.4",
"html-webpack-plugin": "^5.3.1",
"prettier": "^1.19.1",
"sass": "~1.43.4",
"sass-loader": "^12.3.0",
"style-loader": "^3.3.1",
"ts-loader": "^8.3.0",
"ts-node": "^10.4.0",
"tsconfig-paths": "^3.11.0",
"typescript": "^4.4.4",
"url-loader": "^4.1.1",
"vue-loader": "^15.9.6",
"vue-template-compiler": "^2.6.12",
"webpack": "^5.64.0",
"webpack-cli": "^4.9.1",
"zip-webpack-plugin": "^4.0.1"
},
"description": "Browser extension to control your PiHole. Built with Vue, Typescript and ❤",
"scripts": {
"start-chrome": "cross-env TS_NODE_PROJECT=\"tsconfig-for-webpack-config.json\" webpack --mode=development -w --progress --config src/webpack/webpack.chrome.ts",
"start-firefox": "cross-env TS_NODE_PROJECT=\"tsconfig-for-webpack-config.json\" webpack --mode=development -w --progress --config src/webpack/webpack.firefox.ts",
"build": "cross-env TS_NODE_PROJECT=\"tsconfig-for-webpack-config.json\" webpack --mode=production --progress --config src/webpack/webpack.firefox.ts && cross-env TS_NODE_PROJECT=\"tsconfig-for-webpack-config.json\" webpack --mode=production --progress --config src/webpack/webpack.chrome.ts",
"rebuild-package-lock": "npm install --package-lock",
"eslint": "npx eslint . --ext .ts,.vue",
"prettier-check": "prettier --check ./**/*.{ts,vue,css,sccs}",
"prettier-format": "prettier --write ./**/*.{ts,vue,css,sccs}"
},
"repository": {
"type": "git",
"url": "git+https://github.com/badsgahhl/pihole-browser-extension.git"
},
"keywords": [
"pihole",
"extension",
"chrome",
"firefox",
"vue",
"typescript"
],
"author": "Pascal Glaser",
"license": "MIT",
"bugs": {
"url": "https://github.com/badsgahhl/pihole-browser-extension/issues"
},
"homepage": "https://github.com/badsgahhl/pihole-browser-extension/#readme"
}