-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
40 lines (40 loc) · 1.42 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
{
"name": "tagspaces-browser-extension",
"version": "4.0.6",
"description": "Codebase for TagSpaces' Web Clipper extension available for Chrome, MSEdge and Firefox",
"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 && cd _locales && mv de_DE/* de/* && cd ..",
"clean": "rm -rf ./build/"
},
"license": "AGPL-3.0",
"devDependencies": {
"copy-webpack-plugin": "^12.0.2",
"eslint": "^6.8.0",
"shelljs": "^0.8.5",
"web-ext": "^7.11.0",
"web-ext-types": "^3.2.1",
"webpack": "^5.91.0",
"webpack-cli": "^5.1.4"
},
"dependencies": {
"@mozilla/readability": "0.5.0",
"bootstrap": "^5.3.3",
"dompurify": "^3.1.0",
"file-saver": "^2.0.5",
"open-location-code": "^1.0.3"
}
}