-
-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
129 lines (129 loc) · 3.34 KB
/
Copy pathpackage.json
File metadata and controls
129 lines (129 loc) · 3.34 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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
{
"name": "@nekzus/mcp-server",
"version": "1.23.0",
"mcpName": "io.github.Nekzus/npm-sentinel-mcp",
"description": "NPM Sentinel MCP - A powerful Model Context Protocol (MCP) server that revolutionizes NPM package analysis through AI. Built to integrate with Claude and Anthropic AI, it provides real-time intelligence on package security, dependencies, and performance.",
"type": "module",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"main": "./dist/index.js",
"bin": {
"mcp-server-nekzus": "dist/index.js"
},
"files": [
"dist",
"README.md",
"llms-full.txt",
"LICENSE",
"smithery.yaml",
"server.json"
],
"scripts": {
"build": "npm run build:stdio",
"build:stdio": "tsc && shx chmod +x dist/*.js",
"prepare": "npm run build:stdio",
"dev": "npx @smithery/cli dev",
"start": "node dist/index.js",
"test": "vitest",
"test:coverage": "vitest run --coverage",
"format": "biome format --write .",
"lint": "biome lint --write .",
"check": "biome check --apply .",
"commit": "git-cz",
"semantic-release": "semantic-release",
"watch": "tsc --watch",
"prepublishOnly": "npm run build:stdio",
"changelog:init": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0"
},
"keywords": [
"mcp",
"model-context-protocol",
"claude",
"anthropic",
"ai",
"server",
"typescript",
"npm-tools",
"npm-analysis",
"npm-package-info",
"npm-dependencies",
"npm-vulnerabilities",
"npm-trends",
"npm-metrics",
"npm-quality",
"npm-maintenance",
"npm-popularity",
"npm-size",
"npm-types",
"npm-compare",
"development-tools",
"testing-tools",
"utility-functions",
"cli-tools",
"sdk",
"api",
"json-rpc",
"esm",
"typescript-types"
],
"author": {
"name": "nekzus",
"email": "nekzus.dev@gmail.com",
"url": "https://github.com/Nekzus"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/Nekzus/npm-sentinel-mcp.git"
},
"bugs": {
"url": "https://github.com/Nekzus/npm-sentinel-mcp/issues"
},
"homepage": "https://github.com/Nekzus/npm-sentinel-mcp#readme",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.29.0",
"@smithery/sdk": "4.3.0",
"node-fetch": "3.3.2",
"zod": "^4.4.3"
},
"overrides": {
"hono": "^4.11.7",
"qs": "^6.14.1",
"form-data": "^4.0.4",
"undici": "^5.28.5",
"lodash": "^4.17.23"
},
"devDependencies": {
"@biomejs/biome": "2.5.3",
"@semantic-release/changelog": "6.0.3",
"@semantic-release/git": "10.0.1",
"@semantic-release/github": "12.0.9",
"@semantic-release/npm": "13.1.5",
"@semantic-release/release-notes-generator": "14.1.1",
"@smithery/cli": "4.11.1",
"@types/node": "26.1.1",
"@vitest/coverage-v8": "4.1.10",
"chalk": "^5.6.2",
"cors": "^2.8.6",
"cz-conventional-changelog": "3.0.1",
"express": "^5.2.1",
"semantic-release": "25.0.5",
"shx": "0.4.0",
"tsx": "4.19.4",
"typescript": "7.0.2",
"vitest": "4.1.10",
"zod-to-json-schema": "^3.25.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"engines": {
"node": ">=18"
}
}