-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
73 lines (73 loc) · 1.96 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
{
"name": "zotero-chatgpt",
"version": "3.0.1",
"description": "ChatGPT in Zotero",
"config": {
"addonName": "Zotero ChatGPT",
"addonID": "[email protected]",
"addonRef": "zoterochatbot",
"addonInstance": "AddonTemplate",
"prefsPrefix": "extensions.zotero.addontemplate"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kazgu/zotero-chatgpt.git"
},
"author": "kazgu",
"bugs": {
"url": "https://github.com/kazgu/zotero-chatgpt/issues"
},
"homepage": "https://github.com/kazgu/zotero-chatgpt#readme",
"license": "AGPL-3.0-or-later",
"scripts": {
"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": {
"@types/aws-lambda": "^8.10.145",
"@types/bluebird": "^3.5.42",
"@types/estree": "^1.0.6",
"@types/json-schema": "^7.0.15",
"@types/localforage": "^0.0.34",
"@types/minimatch": "^5.1.2",
"@types/mute-stream": "^0.0.4",
"@types/normalize-package-data": "^2.4.4",
"@types/prop-types": "^15.7.13",
"@types/react": "^18.3.12",
"@types/semver": "^7.5.8",
"@types/wrap-ansi": "^8.1.0",
"@types/yauzl": "^2.10.3",
"aws-lambda": "^1.0.7",
"wrap-ansi": "^9.0.0",
"zotero-plugin-toolkit": "^4.0.9"
},
"devDependencies": {
"@eslint/js": "^9.14.0",
"@types/node": "^22.9.0",
"eslint": "^9.12.0",
"prettier": "^3.3.3",
"typescript": "^5.6.3",
"typescript-eslint": "^8.14.0",
"zotero-plugin-scaffold": "^0.1.6",
"zotero-types": "^2.2.0"
},
"prettier": {
"printWidth": 80,
"tabWidth": 2,
"endOfLine": "lf",
"overrides": [
{
"files": [
"*.xhtml"
],
"options": {
"htmlWhitespaceSensitivity": "css"
}
}
]
}
}