@public-ui/mcp 3.0.7-rc.3

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,57 @@
1
+ {
2
+ "name": "@public-ui/mcp",
3
+ "version": "3.0.7-rc.3",
4
+ "license": "EUPL-1.2",
5
+ "homepage": "https://public-ui.github.io",
6
+ "repository": {
7
+ "type": "git",
8
+ "url": "https://github.com/public-ui/kolibri"
9
+ },
10
+ "bugs": {
11
+ "url": "https://github.com/public-ui/kolibri/issues",
12
+ "email": "kolibri@itzbund.de"
13
+ },
14
+ "author": {
15
+ "name": "Informationstechnikzentrum Bund",
16
+ "email": "kolibri@itzbund.de"
17
+ },
18
+ "type": "module",
19
+ "private": false,
20
+ "description": "Model Context Protocol server providing AI agents access to 136+ KoliBri component examples and source code.",
21
+ "keywords": [
22
+ "mcp",
23
+ "model-context-protocol",
24
+ "kolibri",
25
+ "design-system",
26
+ "ai-agent",
27
+ "component-library",
28
+ "accessibility",
29
+ "react",
30
+ "typescript"
31
+ ],
32
+ "main": "dist/index.cjs",
33
+ "module": "dist/index.mjs",
34
+ "bin": {
35
+ "kolibri-mcp": "dist/cli.mjs"
36
+ },
37
+ "exports": {
38
+ ".": {
39
+ "import": "./dist/index.mjs",
40
+ "require": "./dist/index.cjs"
41
+ }
42
+ },
43
+ "devDependencies": {
44
+ "prettier": "3.6.2",
45
+ "unbuild": "3.6.1"
46
+ },
47
+ "files": [
48
+ "dist/",
49
+ "README.md"
50
+ ],
51
+ "scripts": {
52
+ "build": "node prebuild.js && unbuild",
53
+ "format": "prettier --check src",
54
+ "prestart": "pnpm build",
55
+ "start": "node dist/index.mjs"
56
+ }
57
+ }