package.json•1.8 kB
{
"name": "zotero-mcp-plugin",
"type": "module",
"version": "0.1.0",
"description": "Zotero plugin that exposes a Model Context Protocol server for local Zotero data.",
"config": {
"addonName": "Zotero MCP Bridge",
"addonID": "zoteromcpbridge@modelcontext.ai",
"addonRef": "zoteromcpbridge",
"addonInstance": "ZoteroMcpBridge",
"prefsPrefix": "extensions.zotero.zoteromcpbridge"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gpires/zotero_mcp_plugin.git"
},
"author": "Model Context Protocol",
"bugs": {
"url": "https://github.com/gpires/zotero_mcp_plugin/issues"
},
"homepage": "https://github.com/gpires/zotero_mcp_plugin#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",
"test": "zotero-plugin test",
"update-deps": "npm update --save"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.20.2",
"zotero-plugin-toolkit": "^5.1.0-beta.4"
},
"devDependencies": {
"@types/chai": "^5.2.2",
"@types/mocha": "^10.0.10",
"@types/node": "^24.2.0",
"@zotero-plugin/eslint-config": "^0.6.7",
"chai": "^5.2.1",
"eslint": "^9.32.0",
"mocha": "^11.7.1",
"prettier": "^3.6.2",
"typescript": "^5.9.2",
"zotero-plugin-scaffold": "^0.8.0",
"zotero-types": "^4.1.0-beta.1"
},
"prettier": {
"printWidth": 80,
"tabWidth": 2,
"endOfLine": "lf",
"overrides": [
{
"files": [
"*.xhtml"
],
"options": {
"htmlWhitespaceSensitivity": "css"
}
}
]
}
}