forked from tagspaces/browser-extensions
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.49 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
{
"name": "tagspaces-browser-extension",
"version": "3.1.2",
"description": "Codebase for the Chrome and Firefox extensions of TagSpaces",
"repository": {
"type": "git",
"url": "git+https://github.com/tagspaces/browser-extensions/"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "yarn build-chrome && yarn build-firefox",
"build-chrome": "TARGET=chrome $(yarn bin)/webpack",
"build-firefox": "TARGET=firefox $(yarn bin)/webpack",
"package": "yarn clean && yarn build && yarn patch-version && yarn pack-chrome && yarn pack-firefox",
"patch-version": "node utils/patch-version.js",
"pack-chrome": "node utils/pack-chrome.js",
"pack-firefox": "$(yarn bin)/web-ext build -s build/firefox -a ../builds/ --overwrite-dest",
"bump-version": "yarn version",
"eslint": "$(yarn bin)/eslint .",
"update-i18n": "tx pull -a -d",
"clean": "rm -rf ./build/"
},
"license": "AGPL-3.0",
"devDependencies": {
"copy-webpack-plugin": "^4.0.1",
"eslint": "^6.8.0",
"shelljs": "^0.8.4",
"typescript": "^3.8.3",
"web-ext": "^4.2.0",
"web-ext-types": "^3.2.1",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.11"
},
"dependencies": {
"bootswatch": "^3.4.0",
"dompurify": "^2.1.1",
"file-saver": "^2.0.2",
"font-awesome": "^4.7.0",
"jquery": "^3.5.1",
"open-location-code": "^1.0.3",
"readability": "https://github.com/mozilla/readability.git",
"webextension-polyfill": "^0.6.0"
}
}