This repository has been archived by the owner on Jun 22, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
41 lines (41 loc) · 1.53 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
{
"description": "Find a book or something else in Amazon, et fetch it elswehere!",
"author": "Adrian Tombu <[email protected]> (https://otso.fr)",
"license": "GPL-3.0-or-later",
"repository": "https://github.com/amazon-alternatives/extension",
"bugs": {
"url": "https://github.com/amazon-alternatives/extension/issues",
"email": "[email protected]"
},
"scripts": {
"test": "jest",
"test:update": "jest --updateSnapshot",
"build": "webpack --config webpack.config.js --mode production",
"manifest:chrome": "cp manifest-v3.json addon/manifest.json",
"manifest:firefox": "cp manifest-v2.json addon/manifest.json",
"publish:chrome": "chrome-webstore-upload upload --auto-publish --extension-id hcjifkchlbbpcpmdbimipoidnljabnai --source ./addon --client-id $CHROME_CLIENT_ID --client-secret $CHROME_CLIENT_SECRET --refresh-token $CHROME_REFRESH_TOKEN",
"publish:firefox": "cd addon && web-ext sign --api-key $FIREFOX_API_KEY --api-secret $FIREFOX_API_SECRET || exit 0",
"prepare": "husky install"
},
"dependencies": {
"@adriantombu/array-shuffle": "^2.0.10"
},
"devDependencies": {
"@types/jest": "^29.5.3",
"chrome-webstore-upload-cli": "^2.2.2",
"husky": "^8.0.3",
"jest": "^29.6.1",
"lint-staged": "^13.2.3",
"prettier": "^3.0.0",
"puppeteer": "^20.8.3",
"ts-jest": "^29.1.1",
"ts-loader": "^9.4.4",
"typescript": "^5.1.6",
"web-ext": "^7.6.2",
"webpack": "^5.88.2",
"webpack-cli": "^5.1.4"
},
"lint-staged": {
"src/**/*.ts": "prettier --write"
}
}