@db-ux/mcp-server 0.0.0 → 4.5.4-postcss2-6de35db

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 CHANGED
@@ -1,13 +1,54 @@
1
1
  {
2
2
  "name": "@db-ux/mcp-server",
3
- "version": "0.0.0",
3
+ "version": "4.5.4-postcss2-6de35db",
4
4
  "type": "module",
5
- "description": "MCP server to fetch DB UX Design System colors, icons, components and more",
5
+ "description": "MCP server for DB UX Design System gives LLMs access to UI components and code examples",
6
6
  "repository": {
7
7
  "type": "git",
8
8
  "url": "git+https://github.com/db-ux-design-system/core-web.git"
9
9
  },
10
10
  "license": "Apache-2.0",
11
+ "engines": {
12
+ "node": ">=22"
13
+ },
14
+ "bin": {
15
+ "@db-ux/mcp-server": "./dist/index.js"
16
+ },
17
+ "exports": {
18
+ ".": "./dist/index.js"
19
+ },
20
+ "files": [
21
+ "CHANGELOG.md",
22
+ "agent",
23
+ "dist"
24
+ ],
25
+ "scripts": {
26
+ "build": "node esbuild.js",
27
+ "build-manifest": "tsx src/build-manifest.ts",
28
+ "copy-build": "npm-run-all copy-build:*",
29
+ "copy-build:agent": "cpr agent ../../build-outputs/mcp-server/agent --overwrite",
30
+ "copy-build:context": "cpr CONTEXT.md ../../build-outputs/mcp-server/CONTEXT.md --overwrite",
31
+ "copy-build:dist": "cpr dist ../../build-outputs/mcp-server/dist --overwrite",
32
+ "copy-build:package.json": "cpr package.json ../../build-outputs/mcp-server/package.json --overwrite",
33
+ "copy-build:readme": "cpr README.md ../../build-outputs/mcp-server/README.md --overwrite",
34
+ "dev": "npm run build && node dist/index.js",
35
+ "lint": "eslint src/ --ext .ts",
36
+ "start": "node dist/index.js",
37
+ "test": "npm run build && vitest run",
38
+ "test:watch": "vitest"
39
+ },
40
+ "dependencies": {
41
+ "@modelcontextprotocol/sdk": "1.27.1",
42
+ "zod": "4.1.13"
43
+ },
44
+ "devDependencies": {
45
+ "cpr": "3.0.1",
46
+ "esbuild": "0.28.0",
47
+ "npm-run-all2": "8.0.4",
48
+ "tsx": "4.21.0",
49
+ "typescript": "5.9.3",
50
+ "vitest": "4.1.2"
51
+ },
11
52
  "publishConfig": {
12
53
  "registry": "https://registry.npmjs.org/",
13
54
  "access": "public"