ux-ui-experience 1.0.0 → 1.0.1

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.
Files changed (2) hide show
  1. package/README.md +11 -6
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -27,14 +27,17 @@ npm install -g ux-ui-experience
27
27
 
28
28
  ### OpenCode Configuration
29
29
 
30
- Add to your OpenCode configuration file (`~/.config/opencode/opencode.json` or `%APPDATA%\opencode\opencode.json` on Windows):
30
+ Add to your OpenCode configuration file:
31
+ - **Windows:** `%APPDATA%\opencode\opencode.json`
32
+ - **Mac/Linux:** `~/.config/opencode/opencode.json`
31
33
 
32
34
  ```json
33
35
  {
34
- "mcpServers": {
36
+ "mcp": {
35
37
  "ux-ui-experience": {
36
- "command": "npx",
37
- "args": ["-y", "ux-ui-experience@latest"]
38
+ "type": "local",
39
+ "command": ["npx", "-y", "ux-ui-experience@latest"],
40
+ "enabled": true
38
41
  }
39
42
  }
40
43
  }
@@ -44,9 +47,11 @@ Or if installed globally:
44
47
 
45
48
  ```json
46
49
  {
47
- "mcpServers": {
50
+ "mcp": {
48
51
  "ux-ui-experience": {
49
- "command": "ux-ui-experience"
52
+ "type": "local",
53
+ "command": ["ux-ui-experience"],
54
+ "enabled": true
50
55
  }
51
56
  }
52
57
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ux-ui-experience",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "description": "UX-UI-Experience MCP Server - Design intelligence for OpenCode with Bootstrap 5, Font Awesome, and SweetAlert2",
5
5
  "main": "index.js",
6
6
  "bin": {