-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 2.46 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "firefox-in-my-pocket",
"description": "For all those who are missing the old Pocket addon for Firefox, here's an unofficial client for the [Pocket](http://getpocket.com/) webservice. I'm not in any way affiliated to Pocket and only does this for my fellow Firefox users looking for an easy to use Pocket extension for their favorite browser.",
"main": "src/manifest.json",
"devDependencies": {
"@eslint/js": "^9.14.0",
"@sentry/cli": "^1.77.0",
"@sentry/types": "^6.19.0",
"@types/eslint__js": "^8.42.3",
"@types/webextension-polyfill": "^0.12.1",
"chai": "^4.4.1",
"copy-webpack-plugin": "^11.0.0",
"cross-env": "^7.0.3",
"css-loader": "^6.8.0",
"eslint": "^8.28.0",
"file-loader": "^6.2.0",
"mini-css-extract-plugin": "^2.7.0",
"mocha": "^10.1.0",
"npm": "^10.5.0",
"prettier": "^3.0.0",
"sass": "1.78.x",
"sass-loader": "^13.0.0",
"shx": "^0.3.4",
"sinon": "^17.0.0",
"speed-measure-webpack-plugin": "^1.5.0",
"style-loader": "^3.0.0",
"ts-loader": "^9.5.1",
"typescript": "^5.6.3",
"typescript-eslint": "^8.13.0",
"webextension-polyfill": "^0.12.0",
"webpack": "^5.37.1",
"webpack-cli": "^5.0.0",
"webpack-node-externals": "^3.0.0"
},
"scripts": {
"clean": "shx rm -rf build/*",
"build": "npm run clean && npx webpack --mode=production",
"watch": "npm run clean && npx webpack -w --mode=development",
"package": "npm run build && npm run package-firefox && npm run package-chrome && npm run zip-source",
"package-firefox": "cd ./build/firefox && zip -r -FS ../../web-ext-artifacts/in_my_pocket-firefox.zip * -x .DS_Store -x *.map",
"package-chrome": "cd ./build/chrome && zip -r -FS ../../web-ext-artifacts/in_my_pocket-chrome.zip * -x .DS_Store -x *.map",
"zip-source": "zip -r -FS web-ext-artifacts/source.zip CHANGELOG.md README.md LICENSE package.json webpack.config.js src/ -x .DS_Store -x *.map",
"test": "npx mocha --require @babel/register ./test/helper.js ./test/**/*.test.js",
"test-watch": "npx mocha -w ./test/helper/js ./test/**/*.test.js"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/pabuisson/in-my-pocket.git"
},
"keywords": [
"firefox",
"plugin"
],
"author": "Pierre-Adrien Buisson",
"license": "MPL-2.0",
"homepage": "https://bitbucket.org/pabuisson/in-my-pocket#readme",
"dependencies": {
"@sentry/browser": "^6.19.0",
"@sentry/tracing": "^6.19.0"
}
}