generated from windingwind/zotero-plugin-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.65 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
{
"name": "zotero-metadata-scraper",
"version": "1.0.0",
"description": "A Zotero plugin to fetch metadata from multiple sources",
"config": {
"addonName": "Zotero Metadata Scraper",
"addonID": "metadatascraper@creling",
"addonRef": "metadatascraper",
"addonInstance": "MetadataScraper",
"prefsPrefix": "extensions.zotero.metadatascraper"
},
"repository": {
"type": "git",
"url": "git+https://github.com/creling/zotero-metadata-scraper.git"
},
"author": "creling",
"bugs": {
"url": "https://github.com/creling/zotero-metadata-scraper/issues"
},
"homepage": "https://github.com/creling/zotero-metadata-scraper#readme",
"license": "AGPL-3.0-or-later",
"scripts": {
"start": "zotero-plugin serve",
"build": "zotero-plugin build && tsc --noEmit",
"lint:check": "prettier --check . && eslint .",
"lint:fix": "prettier --write . && eslint . --fix",
"release": "zotero-plugin release",
"test": "echo \"Error: no test specified\" && exit 1",
"update-deps": "npm update --save"
},
"dependencies": {
"@orcid/bibtex-parse-js": "^0.0.25",
"zotero-plugin-toolkit": "^4.1.1"
},
"devDependencies": {
"@eslint/js": "^9.20.0",
"@types/node": "^22.13.1",
"eslint": "^9.20.0",
"prettier": "^3.5.0",
"typescript": "^5.7.3",
"typescript-eslint": "^8.23.0",
"zotero-plugin-scaffold": "^0.2.3",
"zotero-types": "^3.1.7"
},
"prettier": {
"printWidth": 120,
"tabWidth": 2,
"endOfLine": "lf",
"overrides": [
{
"files": [
"*.xhtml"
],
"options": {
"htmlWhitespaceSensitivity": "css"
}
}
]
}
}