generated from windingwind/zotero-plugin-template
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
74 lines (74 loc) · 2.26 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
67
68
69
70
71
72
73
74
{
"name": "zotero-annotation-manage",
"version": "0.7.26",
"description": "一个tag管理工具,方便自己管理annotation和tag,进行各种汇总统计,让批注不白做。",
"config": {
"addonName": "zotero-annotation-manage",
"addonID": "annotationmanage@zknu.edu.cn",
"addonRef": "zoteroAnnotationManage",
"addonInstance": "zoteroAnnotationManage",
"prefsPrefix": "extensions.zotero.annotationmanage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/zzlb0224/zotero-annotation-manage.git"
},
"author": "zzlb0224",
"bugs": {
"url": "https://github.com/zzlb0224/zotero-annotation-manage/issues"
},
"homepage": "https://github.com/zzlb0224/zotero-annotation-manage#readme",
"license": "AGPL-3.0-or-later",
"scripts": {
"reinstall": "rd /S /Q node_modules && del /S /Q package-lock.json && npm install && npm run lint && npm run build",
"start": "zotero-plugin serve",
"build": "tsc --noEmit && zotero-plugin build",
"lint": "prettier --write . && eslint . --fix",
"release": "zotero-plugin release",
"test": "echo \"Error: no test specified\" && exit 1",
"update-deps": "npm update --save"
},
"dependencies": {
"@eastdesire/jscolor": "^2.5.2",
"@types/lodash": "^4.17.12",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@uidotdev/usehooks": "^2.4.1",
"classnames": "^2.5.1",
"lodash": "^4.17.21",
"react": "^18.3.1",
"react-colorful": "github:zzlb0224/react-colorful",
"react-dom": "^18.3.1",
"react-intl": "^6.8.4",
"react-tiny-popover": "github:zzlb0224/react-tiny-popover",
"use-immer": "^0.10.0",
"zotero-plugin-toolkit": "^3.0.4"
},
"devDependencies": {
"@eslint/js": "^9.13.0",
"@types/node": "^20.17.2",
"eslint": "^8.57.1",
"eslint-plugin-react": "^7.37.2",
"globals": "^15.11.0",
"prettier": "^3.3.3",
"typescript": "^5.6.3",
"typescript-eslint": "^8.12.1",
"zotero-plugin-scaffold": "^0.0.34",
"zotero-types": "^2.2.1"
},
"prettier": {
"printWidth": 140,
"tabWidth": 2,
"endOfLine": "lf",
"overrides": [
{
"files": [
"*.xhtml"
],
"options": {
"htmlWhitespaceSensitivity": "css"
}
}
]
}
}