-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.72 KB
/
Copy pathpackage.json
File metadata and controls
66 lines (66 loc) · 1.72 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "mdpi-filter-zotero",
"type": "module",
"version": "0.2.0",
"description": "Notandia for Zotero: open-source publisher context and explainable scholarly-literature signals.",
"config": {
"addonName": "Notandia",
"addonID": "zotero-plugin@notandia.github.io",
"addonRef": "mdpifilter",
"addonInstance": "MDPIFilter",
"prefsPrefix": "extensions.zotero.mdpifilter"
},
"repository": {
"type": "git",
"url": "git+https://github.com/notandia/zotero-plugin.git"
},
"author": "Notandia contributors",
"bugs": {
"url": "https://github.com/notandia/zotero-plugin/issues"
},
"homepage": "https://github.com/notandia/zotero-plugin#readme",
"license": "AGPL-3.0-or-later",
"engines": {
"node": ">=22.8.0"
},
"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": "zotero-plugin test --abort-on-fail --exit-on-finish",
"update-deps": "npm update --save"
},
"dependencies": {
"zotero-plugin-toolkit": "5.0.0"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/node": "^22.15.30",
"eslint": "^10.7.0",
"prettier": "^3.5.3",
"typescript": "^5.8.3",
"typescript-eslint": "^8.65.0",
"zotero-plugin-scaffold": "^0.8.7",
"zotero-types": "^4.0.3"
},
"overrides": {
"adm-zip": "0.6.0"
},
"prettier": {
"printWidth": 80,
"tabWidth": 2,
"endOfLine": "lf",
"overrides": [
{
"files": [
"*.xhtml"
],
"options": {
"htmlWhitespaceSensitivity": "css"
}
}
]
}
}