-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.52 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
{
"name": "cache-disabler",
"displayName": "Cache Disabler",
"version": "1.0.0",
"description": "Ensure you get the latest changes during web development.",
"author": "Alejandro Akbal",
"homepage_url": "https://github.com/AlejandroAkbal/Cache-Disabler-Extension",
"scripts": {
"dev": "plasmo dev",
"build": "rm -rf ./build && npm run build:all && npm run package:all",
"build:all": "npm run build:firefox && npm run build:chrome",
"build:firefox": "plasmo build --target=firefox-mv3",
"build:chrome": "plasmo build --target=chrome-mv3",
"package:all": "npm run package:firefox && npm run package:chrome",
"package:firefox": "plasmo package --target=firefox-mv3",
"package:chrome": "plasmo package --target=chrome-mv3"
},
"dependencies": {
"@plasmohq/storage": "^1.8.0",
"@vueuse/core": "^10.4.1",
"lodash-es": "^4.17.21",
"plasmo": "0.83.0",
"vue": "^3.3.4"
},
"devDependencies": {
"@ianvs/prettier-plugin-sort-imports": "4.1.0",
"@types/chrome": "0.0.246",
"@types/lodash-es": "^4.17.9",
"@types/node": "20.7.0",
"autoprefixer": "^10.4.16",
"postcss": "^8.4.30",
"prettier": "3.0.3",
"prettier-plugin-tailwindcss": "^0.5.4",
"tailwindcss": "^3.3.3",
"typescript": "5.2.2"
},
"manifest": {
"browser_specific_settings": {
"gecko": {
"id": "cache-disabler@akbal.dev"
}
},
"host_permissions": [
"<all_urls>"
],
"permissions": [
"browsingData",
"webRequest",
"activeTab"
]
}
}