@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/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
+ }