@leonardocrdso/modular-monolith-mcp 1.0.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 (3) hide show
  1. package/README.md +163 -0
  2. package/build/index.js +23425 -0
  3. package/package.json +32 -0
package/package.json ADDED
@@ -0,0 +1,32 @@
1
+ {
2
+ "name": "@leonardocrdso/modular-monolith-mcp",
3
+ "version": "1.0.0",
4
+ "description": "MCP server with architectural rules for Modular Monolith — module boundaries, communication patterns, and structural validation",
5
+ "type": "module",
6
+ "main": "build/index.js",
7
+ "bin": {
8
+ "modular-monolith-mcp": "build/index.js"
9
+ },
10
+ "files": [
11
+ "build/",
12
+ "README.md",
13
+ "LICENSE"
14
+ ],
15
+ "scripts": {
16
+ "dev": "bun run --watch src/index.ts",
17
+ "start": "bun run src/index.ts",
18
+ "build": "bun build src/index.ts --outdir build --target node",
19
+ "prepublishOnly": "bun run build"
20
+ },
21
+ "dependencies": {
22
+ "@modelcontextprotocol/sdk": "^1.26.0",
23
+ "zod": "^3.25.0"
24
+ },
25
+ "devDependencies": {
26
+ "@types/node": "^22.0.0",
27
+ "typescript": "^5.0.0"
28
+ },
29
+ "publishConfig": {
30
+ "access": "public"
31
+ }
32
+ }