@yawlabs/npmjs-mcp 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/dist/index.js +21861 -0
  2. package/package.json +53 -0
package/package.json ADDED
@@ -0,0 +1,53 @@
1
+ {
2
+ "name": "@yawlabs/npmjs-mcp",
3
+ "version": "0.1.0",
4
+ "description": "npm registry MCP server — package intelligence, security audits, and dependency analysis for AI assistants",
5
+ "license": "MIT",
6
+ "author": "YawLabs <contact@yaw.sh>",
7
+ "repository": {
8
+ "type": "git",
9
+ "url": "git+https://github.com/YawLabs/npmjs-mcp.git"
10
+ },
11
+ "keywords": [
12
+ "npm",
13
+ "npmjs",
14
+ "registry",
15
+ "mcp",
16
+ "model-context-protocol",
17
+ "ai",
18
+ "packages",
19
+ "security",
20
+ "audit",
21
+ "dependencies"
22
+ ],
23
+ "type": "module",
24
+ "main": "dist/index.js",
25
+ "bin": {
26
+ "npmjs-mcp": "dist/index.js"
27
+ },
28
+ "files": [
29
+ "dist/index.js"
30
+ ],
31
+ "scripts": {
32
+ "build": "tsc && node build.mjs",
33
+ "dev": "tsc --watch",
34
+ "start": "node dist/index.js",
35
+ "test": "npm run build && node --test dist/**/*.test.js",
36
+ "test:ci": "npm run test",
37
+ "lint": "biome check src/",
38
+ "lint:fix": "biome check --write src/",
39
+ "prepublishOnly": "npm run build"
40
+ },
41
+ "dependencies": {},
42
+ "devDependencies": {
43
+ "@biomejs/biome": "^1.9.4",
44
+ "@modelcontextprotocol/sdk": "^1.29.0",
45
+ "@types/node": "^22.15.2",
46
+ "esbuild": "^0.28.0",
47
+ "typescript": "^5.8.3",
48
+ "zod": "^3.24.4"
49
+ },
50
+ "engines": {
51
+ "node": ">=18"
52
+ }
53
+ }