@dryui/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.
- package/dist/ai-surface.d.ts +10 -0
- package/dist/architecture.d.ts +103 -0
- package/dist/architecture.js +6262 -0
- package/dist/architecture.json +24419 -0
- package/dist/check-contract.d.ts +1 -0
- package/dist/composition-data.d.ts +27 -0
- package/dist/composition-data.js +5502 -0
- package/dist/contract.d.ts +41 -0
- package/dist/contract.v1.json +22804 -0
- package/dist/contract.v1.schema.json +523 -0
- package/dist/generate-architecture.d.ts +1 -0
- package/dist/generate-contract.d.ts +1 -0
- package/dist/generate-llms-txt.d.ts +6 -0
- package/dist/generate-spec.d.ts +26 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.js +31474 -0
- package/dist/project-planner.d.ts +73 -0
- package/dist/project-planner.js +374 -0
- package/dist/reviewer.d.ts +28 -0
- package/dist/reviewer.js +744 -0
- package/dist/spec-formatters.d.ts +19 -0
- package/dist/spec-formatters.js +256 -0
- package/dist/spec-types.d.ts +83 -0
- package/dist/spec-types.js +0 -0
- package/dist/spec.json +22976 -0
- package/dist/theme-checker.d.ts +22 -0
- package/dist/theme-checker.js +823 -0
- package/dist/utils.d.ts +2 -0
- package/dist/utils.js +72 -0
- package/dist/workspace-audit.d.ts +54 -0
- package/dist/workspace-audit.js +2099 -0
- package/package.json +94 -0
package/package.json
ADDED
|
@@ -0,0 +1,94 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@dryui/mcp",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"author": "Rob Balfre",
|
|
5
|
+
"license": "MIT",
|
|
6
|
+
"repository": {
|
|
7
|
+
"type": "git",
|
|
8
|
+
"url": "https://github.com/rob-balfre/dryui.git",
|
|
9
|
+
"directory": "packages/mcp"
|
|
10
|
+
},
|
|
11
|
+
"homepage": "https://github.com/rob-balfre/dryui#readme",
|
|
12
|
+
"bugs": {
|
|
13
|
+
"url": "https://github.com/rob-balfre/dryui/issues"
|
|
14
|
+
},
|
|
15
|
+
"type": "module",
|
|
16
|
+
"main": "./dist/index.js",
|
|
17
|
+
"types": "./dist/index.d.ts",
|
|
18
|
+
"bin": {
|
|
19
|
+
"dryui-mcp": "./dist/index.js"
|
|
20
|
+
},
|
|
21
|
+
"exports": {
|
|
22
|
+
".": {
|
|
23
|
+
"types": "./dist/index.d.ts",
|
|
24
|
+
"default": "./dist/index.js"
|
|
25
|
+
},
|
|
26
|
+
"./architecture": {
|
|
27
|
+
"bun": "./src/architecture.ts",
|
|
28
|
+
"types": "./dist/architecture.d.ts",
|
|
29
|
+
"default": "./dist/architecture.js"
|
|
30
|
+
},
|
|
31
|
+
"./reviewer": {
|
|
32
|
+
"bun": "./src/reviewer.ts",
|
|
33
|
+
"types": "./dist/reviewer.d.ts",
|
|
34
|
+
"default": "./dist/reviewer.js"
|
|
35
|
+
},
|
|
36
|
+
"./theme-checker": {
|
|
37
|
+
"bun": "./src/theme-checker.ts",
|
|
38
|
+
"types": "./dist/theme-checker.d.ts",
|
|
39
|
+
"default": "./dist/theme-checker.js"
|
|
40
|
+
},
|
|
41
|
+
"./project-planner": {
|
|
42
|
+
"bun": "./src/project-planner.ts",
|
|
43
|
+
"types": "./dist/project-planner.d.ts",
|
|
44
|
+
"default": "./dist/project-planner.js"
|
|
45
|
+
},
|
|
46
|
+
"./workspace-audit": {
|
|
47
|
+
"bun": "./src/workspace-audit.ts",
|
|
48
|
+
"types": "./dist/workspace-audit.d.ts",
|
|
49
|
+
"default": "./dist/workspace-audit.js"
|
|
50
|
+
},
|
|
51
|
+
"./contract.v1.json": "./dist/contract.v1.json",
|
|
52
|
+
"./contract.v1.schema.json": "./dist/contract.v1.schema.json",
|
|
53
|
+
"./spec": "./dist/spec.json",
|
|
54
|
+
"./architecture.json": "./dist/architecture.json",
|
|
55
|
+
"./composition-data": {
|
|
56
|
+
"bun": "./src/composition-data.ts",
|
|
57
|
+
"types": "./dist/composition-data.d.ts",
|
|
58
|
+
"default": "./dist/composition-data.js"
|
|
59
|
+
},
|
|
60
|
+
"./spec-types": {
|
|
61
|
+
"bun": "./src/spec-types.ts",
|
|
62
|
+
"types": "./dist/spec-types.d.ts",
|
|
63
|
+
"default": "./dist/spec-types.js"
|
|
64
|
+
},
|
|
65
|
+
"./spec-formatters": {
|
|
66
|
+
"bun": "./src/spec-formatters.ts",
|
|
67
|
+
"types": "./dist/spec-formatters.d.ts",
|
|
68
|
+
"default": "./dist/spec-formatters.js"
|
|
69
|
+
}
|
|
70
|
+
},
|
|
71
|
+
"files": [
|
|
72
|
+
"dist"
|
|
73
|
+
],
|
|
74
|
+
"publishConfig": {
|
|
75
|
+
"access": "public"
|
|
76
|
+
},
|
|
77
|
+
"scripts": {
|
|
78
|
+
"generate-spec": "bun src/generate-spec.ts",
|
|
79
|
+
"generate-architecture": "bun src/generate-architecture.ts",
|
|
80
|
+
"generate-contract": "bun src/generate-contract.ts",
|
|
81
|
+
"generate-llms": "bun src/generate-llms-txt.ts",
|
|
82
|
+
"check:contract": "bun src/check-contract.ts",
|
|
83
|
+
"check": "bun run check:contract",
|
|
84
|
+
"build": "bun run generate-spec && bun run generate-architecture && bun run generate-contract && bun run generate-llms && mkdir -p dist && cp src/spec.json dist/spec.json && cp src/architecture.json dist/architecture.json && cp src/contract.v1.json dist/contract.v1.json && cp src/contract.v1.schema.json dist/contract.v1.schema.json && bun build src/index.ts src/architecture.ts src/reviewer.ts src/theme-checker.ts src/utils.ts src/project-planner.ts src/workspace-audit.ts src/spec-types.ts src/spec-formatters.ts src/composition-data.ts --outdir dist --root src --target node && bunx tsc -p tsconfig.build.json"
|
|
85
|
+
},
|
|
86
|
+
"dependencies": {
|
|
87
|
+
"@modelcontextprotocol/sdk": "^1.29.0",
|
|
88
|
+
"zod": "^4.3.6"
|
|
89
|
+
},
|
|
90
|
+
"devDependencies": {
|
|
91
|
+
"@types/node": "^25.5.0",
|
|
92
|
+
"typescript": "^6.0.2"
|
|
93
|
+
}
|
|
94
|
+
}
|