-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.81 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
{
"name": "browser-cache-cleaner",
"version": "1.0.0",
"description": "Browser cache cleaner",
"homepage": "https://github.com/mralaminahamed/browser-cache-cleaner/",
"bugs": {
"url": "https://github.com/mralaminahamed/browser-cache-cleaner/issues",
"email": "[email protected]"
},
"author": {
"name": "Al Amin Ahamed",
"email": "[email protected]",
"url": "https://github.com/mralaminahamed/"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/al-amin-ahamed"
},
"repository": {
"type": "git",
"url": "git://github.com/mralaminahamed/browser-cache-cleaner.git"
},
"keywords": [
"cache",
"browser cache",
"cache cleaner",
"browser cache cleaner",
"browser data resetter"
],
"license": "GPL-3.0-only",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"build:watch": "tsc && vite build --watch",
"build:watch:firefox": "cross-env TARGET_BROWSER=firefox vite build --watch",
"build:firefox": "cross-env TARGET_BROWSER=firefox vite build",
"preview": "vite preview",
"lint:firefox": "yarn build:firefox && web-ext lint",
"package:firefox": "yarn build:firefox && web-ext build",
"run:firefix": "yarn build:firefox && web-ext run",
"run:firefix:adnroid": "yarn build:firefox && web-ext run --target=firefox-android",
"run:firefix:no-reload": "yarn build:firefox && web-ext run --no-reload"
},
"devDependencies": {
"@types/node": "^17.0.21",
"@types/webextension-polyfill": "^0.8.2",
"cross-env": "^7.0.3",
"rollup-plugin-copy": "^3.4.0",
"typescript": "^4.6.2",
"vite": "^2.8.6",
"vite-plugin-web-extension": "^1.1.3",
"webextension-polyfill": "^0.8.0"
},
"webExt": {
"sourceDir": "dist"
},
"dependencies": {
"archiver": "^5.3.0"
}
}