This commit is contained in:
iori 2021-02-08 11:44:19 +01:00
parent cc723380c4
commit f9e5083efe
2 changed files with 8 additions and 6 deletions

View File

@ -1,16 +1,16 @@
{
"name": "Izuna",
"version": "0.0.1",
"version": "0.1.1",
"icons": { "16": "icons/izuna-16.png",
"48": "icons/izuna-48.png",
"128": "icons/izuna-128.png"
},
"description": "Better Haskell code review for Github!",
"permissions": [ "declarativeContent", // make it possible for the user to customize izuna's behaviour (enable/disable izuna)
"tabs", // communicate between content and background script, listen to tab updates
"storage", // store user prefs
"https://izuna.app/", // fetch izuna information from izuna server
"http://localhost/" // dev debug
"permissions": [ "declarativeContent",
"tabs",
"storage",
"https://izuna.app/",
"http://localhost/"
],
"background": {
"scripts": [ "dist/background.js" ],

View File

@ -13,6 +13,7 @@
"babel-loader": "^8.2.2",
"chai": "^4.2.0",
"clean-terminal-webpack-plugin": "^3.0.0",
"crx": "^5.0.1",
"eslint": "^7.18.0",
"eslint-webpack-plugin": "^2.4.3",
"jsdom": "16.4.0",
@ -23,6 +24,7 @@
"webpack-cli": "^4.3.1"
},
"scripts": {
"prod": "npx crx pack -p key.pem --zip-output iz.zip",
"build": "webpack --mode production",
"build-app": "webpack --watch --mode production",
"build-test": "webpack --watch --mode production --config webpack.config.test.js",