-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 1.87 KB
/
Copy pathpackage.json
File metadata and controls
72 lines (72 loc) · 1.87 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
{
"name": "zotero-docling",
"type": "module",
"version": "0.3.3",
"description": "Convert Zotero PDF attachments to structured markdown via Docling",
"config": {
"addonName": "zotero-docling",
"addonID": "zotero-docling@max3925vats",
"addonRef": "zoteroDocling",
"addonInstance": "ZoteroDocling",
"prefsPrefix": "extensions.zoteroDocling"
},
"repository": {
"type": "git",
"url": "git+https://github.com/max3925vats/zotero-docling.git"
},
"author": "Mayank Vats",
"bugs": {
"url": "https://github.com/max3925vats/zotero-docling/issues"
},
"homepage": "https://github.com/max3925vats/zotero-docling#readme",
"license": "AGPL-3.0-or-later",
"engines": {
"node": ">=20"
},
"scripts": {
"start": "zotero-plugin serve",
"build": "zotero-plugin build && tsc --noEmit",
"lint:check": "prettier --check . && eslint .",
"check:xhtml": "python3 scripts/check-xhtml.py",
"lint:fix": "prettier --write . && eslint . --fix",
"release": "zotero-plugin release",
"test": "zotero-plugin test",
"update-deps": "npm update --save"
},
"dependencies": {
"jszip": "^3.10.1",
"zotero-plugin-toolkit": "^5.1.0-beta.13"
},
"devDependencies": {
"@types/chai": "^5.2.3",
"@types/mocha": "^10.0.10",
"@types/node": "^24.12.4",
"@zotero-plugin/eslint-config": "^0.6.9",
"chai": "^6.2.2",
"eslint": "^9.39.4",
"fast-check": "^4.8.0",
"mocha": "^11.7.5",
"prettier": "^3.8.3",
"typescript": "^5.9.3",
"zotero-plugin-scaffold": "^0.8.6",
"zotero-types": "^4.1.2"
},
"prettier": {
"printWidth": 80,
"tabWidth": 2,
"endOfLine": "lf",
"overrides": [
{
"files": [
"*.xhtml"
],
"options": {
"htmlWhitespaceSensitivity": "css"
}
}
]
},
"overrides": {
"serialize-javascript": ">=7.0.5"
}
}