-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.59 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.59 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
{
"name": "neobrutalism-mcp-server",
"version": "1.0.8",
"description": "A Model Context Protocol (MCP) server for neobrutalism components, providing AI assistants with access to component source code, demos, blocks, and metadata.",
"type": "module",
"main": "./build/index.js",
"bin": {
"neobrutalism-mcp": "./build/index.js"
},
"files": [
"build/**/*",
"components/**/*",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc && cp -r components build/",
"clean": "rm -rf build",
"prepublishOnly": "npm run clean && npm run build && chmod +x build/index.js",
"start": "node build/index.js",
"dev": "tsc && cp -r components build/ && node build/index.js",
"test": "./test-package.sh",
"examples": "./examples.sh"
},
"keywords": [
"mcp",
"model-context-protocol",
"neobrutalism",
"neobrutalism-components",
"ui-components",
"react",
"typescript",
"ai-tools",
"claude",
"copilot"
],
"author": "Dennis Khylkouski",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/dennisimoo/neobrutalism-mcp-server.git"
},
"bugs": {
"url": "https://github.com/dennisimoo/neobrutalism-mcp-server/issues"
},
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.16.0",
"axios": "^1.8.4",
"cheerio": "^1.0.0",
"joi": "^17.13.3",
"uuid": "^10.0.0",
"winston": "^3.15.0",
"zod": "^3.24.2"
},
"devDependencies": {
"@types/node": "^22.10.5",
"@types/uuid": "^10.0.0",
"typescript": "^5.7.2"
}
}