@synergy-design-system/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/LICENSE +9 -0
- package/README.md +8 -0
- package/package.json +31 -0
package/LICENSE
ADDED
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
The MIT License
|
|
2
|
+
|
|
3
|
+
Copyright 2023 SICK AG
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
|
6
|
+
|
|
7
|
+
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
|
8
|
+
|
|
9
|
+
THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
package/README.md
ADDED
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
# @synergy-design-system/mcp
|
|
2
|
+
|
|
3
|
+
Synergy MCP Server – Multi-Framework Component Metadata & Tooling
|
|
4
|
+
|
|
5
|
+
This package is currently in alpha stadium.
|
|
6
|
+
There will be **no** releases on the `stable` channel until we reach basic stability.
|
|
7
|
+
|
|
8
|
+
If you want to try it out, please use `npm install -g @synergy-design-system/mcp@alpha`.
|
package/package.json
ADDED
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
{
|
|
2
|
+
"author": {
|
|
3
|
+
"name": "SICK Global UX Foundation",
|
|
4
|
+
"url": "https://www.sick.com"
|
|
5
|
+
},
|
|
6
|
+
"dependencies": {},
|
|
7
|
+
"description": "MCP Server for the Synergy Design System",
|
|
8
|
+
"files": [
|
|
9
|
+
"README.md"
|
|
10
|
+
],
|
|
11
|
+
"homepage": "https://github.com/synergy-design-system/synergy-design-system/tree/main/packages/mcp",
|
|
12
|
+
"keywords": [
|
|
13
|
+
"SDS",
|
|
14
|
+
"Synergy Design System",
|
|
15
|
+
"SICK",
|
|
16
|
+
"SICK Design System",
|
|
17
|
+
"UI",
|
|
18
|
+
"UI MCP Server",
|
|
19
|
+
"Synergy MCP Server"
|
|
20
|
+
],
|
|
21
|
+
"license": "MIT",
|
|
22
|
+
"name": "@synergy-design-system/mcp",
|
|
23
|
+
"repository": {
|
|
24
|
+
"type": "git",
|
|
25
|
+
"url": "https://github.com/synergy-design-system/synergy-design-system.git",
|
|
26
|
+
"directory": "packages/mcp"
|
|
27
|
+
},
|
|
28
|
+
"type": "module",
|
|
29
|
+
"version": "0.1.0",
|
|
30
|
+
"scripts": {}
|
|
31
|
+
}
|