-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.83 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
{
"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",
"cross-env": "^7.0.3",
"esbuild-jest": "^0.5.0",
"eslint": "^8.28.0",
"jest": "^29.7.0",
"jest-webextension-mock": "^4.0.0",
"npm": "^10.5.0",
"prettier": "^3.0.0",
"shx": "^0.3.4",
"ts-node": "^10.9.2",
"typescript": "^5.6.3",
"typescript-eslint": "^8.13.0",
"webextension-polyfill": "^0.12.0"
},
"scripts": {
"clean": "shx rm -rf build/*",
"build": "npm run clean && node esbuild.mjs",
"watch": "npm run clean && node esbuild.mjs --watch",
"package": "npm run build && npm run package-firefox && npm run zip-source",
"package-firefox": "cd ./build && zip -r -FS ../../web-ext-artifacts/in_my_pocket-firefox.zip * -x .DS_Store -x *.map",
"zip-source": "zip -r -FS web-ext-artifacts/source.zip CHANGELOG.md README.md LICENSE package.json esbuild.mjs tsconfig.json src/ -x .DS_Store -x *.map",
"test": "jest",
"test-watch": "jest --watch"
},
"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://inmypocketaddon.com",
"dependencies": {
"@sentry/browser": "^6.19.0",
"@sentry/tracing": "^6.19.0"
}
}