-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.53 KB
/
package.json
File metadata and controls
37 lines (37 loc) · 1.53 KB
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
{
"name": "tiny-tiny-rss-background-tab",
"version": "0.0.4",
"description": "Browser extension for opening Tiny Tiny RSS links in a background tab using a shortcut key",
"scripts": {
"build": "gulp",
"clean": "gulp clean",
"lint": "web-ext lint -s dist/firefox/",
"pack": "npm run pack-chrome && npm run pack-firefox",
"start-chrome": "web-ext run --verbose --source-dir dist/chrome/ --target chromium",
"start-firefox": "web-ext run --verbose --source-dir dist/firefox/ --target firefox-desktop --start-url about:debugging --start-url about:addons",
"pack-chrome": "web-ext build --source-dir dist/chrome/ --artifacts-dir web-ext-artifacts/chrome/ --overwrite-dest",
"pack-firefox": "web-ext build --source-dir dist/firefox/ --artifacts-dir web-ext-artifacts/firefox/ --overwrite-dest",
"sign-firefox": "web-ext sign --source-dir dist/firefox/"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^29.0.2",
"@rollup/plugin-node-resolve": "^16.0.3",
"@rollup/stream": "^3.0.1",
"convert-manifest-format": "^0.9.0",
"del": "^8.0.1",
"gulp": "^5.0.1",
"vinyl-source-stream": "^2.0.0",
"web-ext": "^10.0.0",
"webextension-polyfill": "^0.12.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dwc/tiny-tiny-rss-background-tab.git"
},
"author": "Daniel Westermann-Clark",
"license": "MIT",
"bugs": {
"url": "https://github.com/dwc/tiny-tiny-rss-background-tab/issues"
},
"homepage": "https://github.com/dwc/tiny-tiny-rss-background-tab#readme"
}