generated from windingwind/zotero-plugin-template
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
66 lines (66 loc) · 1.9 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
61
62
63
64
65
66
{
"name": "zotero-arxiv-workflow",
"version": "0.2.8",
"description": "arXiv Workflow for Zotero",
"config": {
"addonName": "arXiv Workflow for Zotero",
"addonID": "[email protected]",
"addonRef": "arxiv-workflow",
"addonInstance": "arXivWorkflow",
"prefsPrefix": "extensions.zotero.arxiv-workflow"
},
"scripts": {
"start": "zotero-plugin serve",
"build": "tsc --noEmit && zotero-plugin build",
"lint": "prettier --check . && eslint .",
"lint:fix": "prettier --write . && eslint . --fix",
"release": "zotero-plugin release",
"test": "echo \"Error: no test specified\" && exit 1",
"prepare": "husky"
},
"lint-staged": {
"*.{ts,js,mjs}": "eslint --fix",
"*.{ts,js,mjs,css,xhtml,md,yaml,json}": "prettier -w"
},
"repository": {
"type": "git",
"url": "git+https://github.com/AllanChain/zotero-arxiv-workflow.git"
},
"author": "Allan Chain",
"license": "AGPL-3.0-or-later",
"bugs": {
"url": "https://github.com/AllanChain/zotero-arxiv-workflow/issues"
},
"homepage": "https://github.com/AllanChain/zotero-arxiv-workflow#readme",
"dependencies": {
"zotero-plugin-toolkit": "^4.0.6"
},
"devDependencies": {
"@eslint/js": "^9.9.1",
"@types/node": "^22.7.4",
"eslint": "^9.12.0",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"prettier": "^3.3.3",
"typescript": "^5.6.2",
"typescript-eslint": "^8.8.0",
"zotero-plugin-scaffold": "^0.1.6",
"zotero-types": "^3.0.0"
},
"prettier": {
"printWidth": 80,
"tabWidth": 2,
"endOfLine": "lf",
"overrides": [
{
"files": [
"*.xhtml"
],
"options": {
"htmlWhitespaceSensitivity": "css"
}
}
]
},
"packageManager": "[email protected]+sha512.65a9c38a8172948f617a53619762cd77e12b9950fe1f9239debcb8d62c652f2081824b986fee7c0af6c0a7df615becebe4bf56e17ec27214a87aa29d9e038b4b"
}