-
-
Notifications
You must be signed in to change notification settings - Fork 24
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.5 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.5 KB
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
{
"name": "jabrefbrowserextension",
"description": "Browser extension for users of the bibliographic reference manager [JabRef](https://www.jabref.org/). It automatically identifies and extracts bibliographic information on websites and sends them to JabRef with one click.",
"keywords": [
"JabRef",
"bibliographic information extraction",
"collect references",
"reference management"
],
"homepage": "https://github.com/JabRef/JabRef-Browser-Extension#readme",
"bugs": {
"url": "https://github.com/JabRef/JabRef-Browser-Extension/issues"
},
"license": "AGPL-3.0-or-later",
"author": "JabRef",
"repository": {
"type": "git",
"url": "git+https://github.com/JabRef/JabRef-Browser-Extension.git"
},
"main": "background.js",
"scripts": {
"dev:firefox": "web-ext run",
"dev:chrome": "web-ext run -t chromium",
"dev:opera": "web-ext run -t chromium --chromium-binary C:\\Users\\Tobi\\AppData\\Local\\Programs\\Opera\\64.0.3417.92\\opera.exe",
"build": "web-ext build",
"lint": "pnpm lint:oxlint && pnpm lint:oxfmt && pnpm lint:firefox",
"lint:firefox": "web-ext lint",
"lint:oxlint": "oxlint",
"lint:oxfmt": "oxfmt --check",
"submit:firefox": "web-ext sign",
"test": "vitest run",
"test:legacy": "node test.js arXiv.org.js"
},
"devDependencies": {
"globals": "^17.0.0",
"jsdom": "^27.4.0",
"oxfmt": "^0.27.0",
"oxlint": "^1.41.0",
"vitest": "^3.2.4",
"web-ext": "^9.2.0"
},
"packageManager": "pnpm@10.20.0"
}