-
-
Notifications
You must be signed in to change notification settings - Fork 285
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.69 KB
/
package.json
File metadata and controls
81 lines (81 loc) · 2.69 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
{
"name": "@jpisnice/shadcn-ui-mcp-server",
"version": "2.0.0",
"description": "A Model Context Protocol (MCP) server for shadcn/ui components, providing AI assistants with access to component source code, demos, blocks, and metadata.",
"type": "module",
"main": "./build/index.js",
"bin": {
"shadcn-mcp": "build/index.js"
},
"files": [
"build/**/*",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc",
"clean": "node -e \"const fs=require('fs');if(fs.existsSync('build'))fs.rmSync('build',{recursive:true,force:true})\"",
"prepublishOnly": "npm run security:all && npm run test && npm run clean && npm run build",
"start": "node build/index.js",
"dev": "tsc && node build/index.js",
"test": "powershell -ExecutionPolicy Bypass -File test-package.ps1",
"examples": "./examples.sh",
"security:audit": "npm audit --audit-level=moderate",
"security:audit:fix": "npm audit fix",
"security:licenses": "license-checker --summary",
"security:snyk": "snyk test",
"security:secrets": "echo 'Secret scanning would be implemented with gitleaks'",
"security:all": "npm run security:audit && npm run security:licenses && npm run security:snyk || echo 'Snyk authentication required - run snyk auth to enable'",
"prepublish:security": "npm run security:all",
"version:patch": "node scripts/bump-version.js patch",
"version:minor": "node scripts/bump-version.js minor",
"version:major": "node scripts/bump-version.js major",
"publish:auto": "powershell -ExecutionPolicy Bypass -File scripts/publish.ps1",
"publish:quick": "powershell -ExecutionPolicy Bypass -File scripts/publish.ps1 -SkipTests -Force",
"publish:direct": "npm publish --access public --ignore-scripts"
},
"keywords": [
"mcp",
"model-context-protocol",
"shadcn",
"shadcn-ui",
"ui-components",
"react",
"typescript",
"ai-tools",
"claude",
"copilot"
],
"author": "Janardhan Pollle",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/Jpisnice/shadcn-ui-mcp-server.git"
},
"bugs": {
"url": "https://github.com/Jpisnice/shadcn-ui-mcp-server/issues"
},
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.16.0",
"axios": "^1.8.4",
"cheerio": "^1.0.0",
"cors": "^2.8.5",
"express": "^4.21.2",
"joi": "^17.13.3",
"uuid": "^10.0.0",
"winston": "^3.15.0",
"zod": "^3.24.2"
},
"devDependencies": {
"@types/cors": "^2.8.17",
"@types/express": "^5.0.1",
"@types/node": "^22.10.5",
"@types/uuid": "^10.0.0",
"license-checker": "^25.0.1",
"snyk": "^1.1300.1",
"typescript": "^5.7.2"
}
}