62 lines
1.6 KiB
JSON
62 lines
1.6 KiB
JSON
{
|
|
"name": "chatpapers",
|
|
"type": "module",
|
|
"version": "0.1.0",
|
|
"description": "AI paper reading and summarization plugin for Zotero 9",
|
|
"config": {
|
|
"addonName": "ChatPapers",
|
|
"addonID": "chatpapers@local",
|
|
"addonRef": "chatpapers",
|
|
"addonInstance": "ChatPapers",
|
|
"prefsPrefix": "extensions.zotero.chatpapers"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/chatpapers/chatpapers.git"
|
|
},
|
|
"author": "ChatPapers",
|
|
"bugs": {
|
|
"url": "https://github.com/chatpapers/chatpapers/issues"
|
|
},
|
|
"homepage": "https://github.com/chatpapers/chatpapers#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",
|
|
"update-deps": "npm update --save"
|
|
},
|
|
"dependencies": {
|
|
"katex": "^0.18.1",
|
|
"lucide": "^1.25.0",
|
|
"zotero-plugin-toolkit": "^5.1.0-beta.13"
|
|
},
|
|
"devDependencies": {
|
|
"@types/katex": "^0.16.8",
|
|
"@types/node": "^24.10.0",
|
|
"@zotero-plugin/eslint-config": "^0.6.7",
|
|
"eslint": "^9.39.2",
|
|
"prettier": "^3.7.4",
|
|
"typescript": "^5.9.3",
|
|
"zotero-plugin-scaffold": "^0.8.2",
|
|
"zotero-types": "^4.1.0-beta.4"
|
|
},
|
|
"prettier": {
|
|
"printWidth": 80,
|
|
"tabWidth": 2,
|
|
"endOfLine": "lf",
|
|
"overrides": [
|
|
{
|
|
"files": [
|
|
"*.xhtml"
|
|
],
|
|
"options": {
|
|
"htmlWhitespaceSensitivity": "css"
|
|
}
|
|
}
|
|
]
|
|
}
|
|
}
|