-
-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 2.77 KB
/
Copy pathpackage.json
File metadata and controls
88 lines (88 loc) · 2.77 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "zoplicate",
"version": "5.1.1",
"description": "Detect and manage duplicate items in Zotero.",
"config": {
"addonName": "Zoplicate",
"addonID": "zoplicate@chenglongma.com",
"addonRef": "zoplicate",
"addonInstance": "Zoplicate",
"prefsPrefix": "extensions.zotero.zoplicate"
},
"main": "src/index.ts",
"scripts": {
"start": "zotero-plugin serve",
"zotero:debug": "bash scripts/zotero-remote-debug.sh start",
"zotero:doctor": "bash scripts/zotero-remote-debug.sh doctor",
"zotero:install": "bash scripts/zotero-remote-debug.sh install-zotero",
"zotero:deps": "bash scripts/zotero-remote-debug.sh install-deps",
"zotero:stop": "bash scripts/zotero-remote-debug.sh stop",
"zotero:logs": "bash scripts/zotero-remote-debug.sh logs",
"zotero:screenshot": "bash scripts/zotero-remote-debug.sh screenshot",
"zotero:vnc": "xdg-open 'http://localhost:6080/vnc.html?host=localhost&port=6080&path=websockify&autoconnect=1&resize=scale'",
"zotero:beta": "bash scripts/zotero-beta-debug.sh start",
"zotero:beta:screenshot": "bash scripts/zotero-beta-debug.sh screenshot",
"build": "tsc --noEmit && zotero-plugin build",
"lint": "prettier --write . && eslint . --fix",
"release": "zotero-plugin release",
"publish-release": "bash scripts/release.sh",
"test": "jest",
"update-deps": "npm update --save",
"npm-check-updates": "ncu -u"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ChenglongMa/zoplicate.git"
},
"author": "Chenglong Ma",
"license": "AGPL-3.0-or-later",
"bugs": {
"url": "https://github.com/ChenglongMa/zoplicate/issues"
},
"homepage": "https://chenglongma.com/zoplicate/",
"engines": {
"node": ">=24.0.0"
},
"dependencies": {
"zotero-plugin-toolkit": "^5.2.0"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@jest/globals": "^30.4.1",
"@testing-library/jest-dom": "^7.0.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.5",
"@types/node": "^26.2.0",
"@types/react": "^18.3.31",
"@types/react-dom": "^18.3.7",
"eslint": "^10.8.1",
"eslint-config-prettier": "^10.1.8",
"fake-indexeddb": "^6.2.5",
"jest": "^30.4.2",
"jest-environment-jsdom": "^30.4.1",
"prettier": "^3.9.6",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"ts-jest": "^29.4.12",
"ts-node": "^10.9.2",
"typescript": "^6.0.3",
"typescript-eslint": "^8.67.0",
"zotero-plugin-scaffold": "^0.8.8",
"zotero-types": "^4.1.3"
},
"prettier": {
"printWidth": 120,
"tabWidth": 2,
"endOfLine": "lf",
"overrides": [
{
"files": [
"*.xhtml"
],
"options": {
"htmlWhitespaceSensitivity": "css"
}
}
]
}
}