diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 19:33:14 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 19:33:14 +0000 |
commit | 36d22d82aa202bb199967e9512281e9a53db42c9 (patch) | |
tree | 105e8c98ddea1c1e4784a60a5a6410fa416be2de /browser/components/pocket/package.json | |
parent | Initial commit. (diff) | |
download | firefox-esr-upstream.tar.xz firefox-esr-upstream.zip |
Adding upstream version 115.7.0esr.upstream/115.7.0esrupstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'browser/components/pocket/package.json')
-rw-r--r-- | browser/components/pocket/package.json | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/browser/components/pocket/package.json b/browser/components/pocket/package.json new file mode 100644 index 0000000000..8d5f5687a8 --- /dev/null +++ b/browser/components/pocket/package.json @@ -0,0 +1,32 @@ +{ + "name": "save-to-pocket-ff", + "version": "1.0.0", + "description": "Task running for Save to Pocket Extension", + "scripts": { + "start": "npm run build && npm run watch", + "build": "npm-run-all build:*", + "build:webpack": "webpack --config webpack.config.js", + "build:sass": "sass content/panels/css/main.scss content/panels/css/main.compiled.css", + "watch": "npm-run-all -p watch:*", + "watch:webpack": "npm run build:webpack -- --env development -w", + "watch:sass": "chokidar \"content/panels/**/*.scss\" -c \"npm run build:sass\"", + "test": "echo \"Error: no test specified\" && exit 1" + }, + "author": "Mozilla (https://mozilla.org/)", + "license": "MPL-2.0", + "devDependencies": { + "@babel/core": "7.18.6", + "@babel/preset-react": "7.18.6", + "babel-loader": "8.2.5", + "chokidar-cli": "3.0.0", + "npm-run-all": "4.1.5", + "sass": "1.53.0", + "webpack": "5.73.0", + "webpack-cli": "4.10.0" + }, + "repository": "https://hg.mozilla.org/", + "dependencies": { + "react": "18.2.0", + "react-dom": "18.2.0" + } +} |