-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.34 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.34 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
{
"name": "zotero-library-search",
"type": "module",
"version": "0.1.8",
"description": "Search library catalogs and repositories directly from Zotero",
"homepage": "https://github.com/CrispStrobe/CrispZotLib",
"config": {
"addonName": "Library Search",
"addonID": "librarysearch@example.com",
"addonRef": "librarysearch",
"addonInstance": "LibrarySearch",
"prefsPrefix": "extensions.zotero.librarysearch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/CrispStrobe/CrispZotLib.git"
},
"author": "CrispStrobe",
"license": "MIT",
"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": {
"zotero-plugin-toolkit": "^5.1.2"
},
"devDependencies": {
"@eslint/js": "^9.24.0",
"@types/node": "^25.6.0",
"@xmldom/xmldom": ">=0.8.12",
"eslint": "^9.24.0",
"prettier": "^3.8.2",
"typescript": "^5.8.3",
"typescript-eslint": "^8.58.1",
"zotero-plugin-scaffold": "^0.8.6",
"zotero-types": "^4.1.2"
},
"overrides": {
"@xmldom/xmldom": ">=0.8.12"
}
}