-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 2.61 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
{
"name": "adguard-browser-extension",
"version": "1.0.3",
"dependencies": {
"@vue/composition-api": "^1.7.2",
"vue": "^2.6.14",
"vue-debounce": "^3.0.1",
"vue-router": "^3.5.3",
"vuetify": "^2.5.14"
},
"devDependencies": {
"@mdi/js": "^7.3.67",
"@types/chrome": "^0.0.248",
"@types/copy-webpack-plugin": "^10.1.0",
"@types/firefox-webext-browser": "^111.0.3",
"@types/zip-webpack-plugin": "^3.0.5",
"@typescript-eslint/eslint-plugin": "^6.9.1",
"@typescript-eslint/parser": "^6.9.1",
"copy-webpack-plugin": "^11.0.0",
"cross-env": "^7.0.3",
"css-loader": "^6.8.1",
"deepmerge": "^4.3.1",
"eslint": "^8.52.0",
"eslint-config-airbnb-typescript": "^17.1.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.23.3",
"eslint-plugin-vue": "^9.18.1",
"eslint-webpack-plugin": "^4.0.1",
"html-webpack-plugin": "^5.5.3",
"prettier": "^3.0.3",
"sass": "~1.69.5",
"sass-loader": "^13.3.2",
"style-loader": "^3.3.3",
"ts-loader": "^9.5.0",
"ts-node": "^10.9.1",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.2.2",
"url-loader": "^4.1.1",
"vue-loader": "^15.9.6",
"vue-template-compiler": "^2.6.12",
"webpack": "^5.64.0",
"webpack-cli": "^5.1.4",
"zip-webpack-plugin": "^4.0.1"
},
"description": "Browser extension to control your AdGuard Home. 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": "https://github.com/satheshshiva/Adguard-Home-Browser-Ext.git"
},
"keywords": [
"adguard",
"extension",
"chrome",
"firefox",
"vue",
"typescript"
],
"author": "Sathesh Sivashanmugam",
"license": "MIT",
"bugs": {
"url": "https://github.com/satheshshiva/Adguard-Home-Browser-Ext/issues"
},
"homepage": "hhttps://github.com/satheshshiva/Adguard-Home-Browser-Ext/#readme"
}