-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
43 lines (43 loc) · 947 Bytes
/
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
{
"name": "mcp-zotero",
"type": "module",
"version": "1.0.6",
"repository": {
"type": "git",
"url": "https://github.com/kaliaboi/mcp-zotero"
},
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsc && chmod +x build/server.js",
"postbuild": "echo '#!/usr/bin/env node' | cat - build/server.js > temp && mv temp build/server.js",
"start": "node build/server.js"
},
"bin": {
"mcp-zotero": "./build/server.js"
},
"files": [
"build",
"README.md"
],
"keywords": [
"mcp",
"zotero",
"zotero-api",
"zotero-api-client",
"claude"
],
"author": "",
"license": "ISC",
"description": "",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.0.4",
"dotenv": "^16.4.7",
"zod": "^3.24.1",
"zotero-api-client": "^0.46.0"
},
"devDependencies": {
"@types/node": "latest",
"typescript": "latest"
}
}