-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathpackage.json
More file actions
104 lines (104 loc) · 2.48 KB
/
Copy pathpackage.json
File metadata and controls
104 lines (104 loc) · 2.48 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"name": "paper-search-mcp-nodejs",
"version": "0.2.6",
"description": "A Node.js MCP server for searching and downloading academic papers from multiple sources, including arXiv, PubMed, bioRxiv, Web of Science, and more.",
"main": "dist/server.js",
"type": "module",
"bin": {
"paper-search-mcp-nodejs": "./dist/server.js"
},
"scripts": {
"build": "npx tsc",
"start": "node dist/server.js",
"start:mcp": "tsx src/server.ts",
"dev": "tsx src/server.ts",
"test": "jest",
"lint": "eslint src/**/*.ts",
"format": "prettier --write src/**/*.ts"
},
"keywords": [
"mcp",
"model-context-protocol",
"academic-papers",
"research",
"arxiv",
"pubmed",
"web-of-science",
"nodejs",
"typescript"
],
"author": "dianel",
"license": "MIT",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.24.3",
"@types/cheerio": "^0.22.35",
"axios": "^1.7.2",
"cheerio": "^1.1.2",
"dotenv": "^16.4.5",
"lru-cache": "^11.2.5",
"p-limit": "^7.2.0",
"pdf-parse": "^1.1.4",
"xml2js": "^0.6.2",
"zod": "^3.23.8"
},
"devDependencies": {
"@types/jest": "^29.5.14",
"@types/lru-cache": "^7.10.9",
"@types/node": "^20.14.10",
"@types/xml2js": "^0.4.14",
"@typescript-eslint/eslint-plugin": "^7.16.0",
"@typescript-eslint/parser": "^7.16.0",
"eslint": "^8.57.0",
"jest": "^29.7.0",
"prettier": "^3.3.2",
"ts-jest": "^29.2.5",
"tsx": "^4.16.2",
"typescript": "^5.5.3"
},
"jest": {
"preset": "ts-jest/presets/default-esm",
"testEnvironment": "node",
"extensionsToTreatAsEsm": [
".ts"
],
"transformIgnorePatterns": [
"node_modules/(?!(p-limit|yocto-queue)/)"
],
"moduleNameMapper": {
"^(\\.{1,2}/.*)\\.js$": "$1"
},
"transform": {
"^.+\\.tsx?$": [
"ts-jest",
{
"useESM": true
}
]
},
"testMatch": [
"**/tests/**/*.test.ts",
"**/__tests__/**/*.test.ts"
],
"setupFilesAfterEnv": [
"<rootDir>/tests/setup.ts"
],
"collectCoverageFrom": [
"src/**/*.ts",
"!src/**/*.d.ts"
]
},
"overrides": {
"entities": "^6.0.0"
},
"engines": {
"node": ">=18.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/Dianel555/paper-search-nodejs.git"
},
"homepage": "https://github.com/Dianel555/paper-search-nodejs#readme",
"bugs": {
"url": "https://github.com/Dianel555/paper-search-nodejs/issues"
}
}