-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 935 Bytes
/
package.json
File metadata and controls
45 lines (45 loc) · 935 Bytes
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
{
"name": "@ecosyste-ms/mcp",
"version": "1.0.2",
"description": "MCP server for querying ecosyste.ms packages API",
"main": "index.js",
"files": [
"index.js",
"lib/"
],
"bin": {
"ecosystems-mcp": "index.js"
},
"type": "module",
"scripts": {
"start": "node index.js",
"test": "node --test"
},
"keywords": [
"mcp",
"ecosystems",
"packages",
"dependencies"
],
"author": "ecosyste.ms",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/ecosyste-ms/mcp.git"
},
"homepage": "https://github.com/ecosyste-ms/mcp#readme",
"bugs": {
"url": "https://github.com/ecosyste-ms/mcp/issues"
},
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"@ecosyste-ms/critical": "^1.0.20251231",
"@modelcontextprotocol/sdk": "^1.0.0",
"better-sqlite3": "^12.5.0"
}
}