generated from windingwind/zotero-plugin-template
-
Notifications
You must be signed in to change notification settings - Fork 49
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.09 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 2.09 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
{
"name": "zotero-ai-butler",
"type": "module",
"version": "3.4.0-beta.1",
"description": "Your personal AI butler, automatically and meticulously reads papers and summarizes notes.",
"config": {
"addonName": "zotero-ai-butler",
"addonID": "zotero-ai-butler@github.com",
"addonRef": "aiButler",
"addonInstance": "AIButler",
"prefsPrefix": "extensions.zotero.aiButler"
},
"repository": {
"type": "git",
"url": "git+https://github.com/steven-jianhao-li/zotero-AI-Butler.git"
},
"author": "Steven Jianhao Li",
"bugs": {
"url": "https://github.com/steven-jianhao-li/zotero-AI-Butler/issues"
},
"homepage": "https://github.com/steven-jianhao-li/zotero-AI-Butler#readme",
"license": "AGPL-3.0-or-later",
"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",
"pretest": "node ./scripts/gen-env-setup.mjs",
"test": "zotero-plugin test",
"scaffold:provider": "node ./scripts/create-provider.mjs",
"update-deps": "npm update --save"
},
"dependencies": {
"@types/marked": "^5.0.2",
"d3": "^7.9.0",
"jszip": "^3.10.1",
"katex": "^0.16.28",
"marked": "^16.4.1",
"markmap-lib": "^0.18.12",
"markmap-view": "^0.18.12",
"mathjax": "^3.2.2",
"simple-mind-map": "^0.14.0-fix.1",
"zotero-plugin-toolkit": "^5.1.0-beta.13"
},
"devDependencies": {
"@types/chai": "^5.2.3",
"@types/mocha": "^10.0.10",
"@types/node": "^25.2.0",
"@zotero-plugin/eslint-config": "^0.6.7",
"chai": "^6.2.2",
"eslint": "^9.39.2",
"mocha": "^11.7.5",
"prettier": "^3.8.1",
"typescript": "^5.9.3",
"zotero-plugin-scaffold": "^0.8.2",
"zotero-types": "^4.1.0-beta.1"
},
"prettier": {
"printWidth": 80,
"tabWidth": 2,
"endOfLine": "lf",
"overrides": [
{
"files": [
"*.xhtml"
],
"options": {
"htmlWhitespaceSensitivity": "css"
}
}
]
}
}