ux-toolkit 0.4.1 → 0.5.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/.claude-plugin/marketplace.json +11 -0
- package/.claude-plugin/plugin.json +23 -0
- package/README.md +4 -4
- package/dist/cli.js +768 -121
- package/dist/cli.js.map +1 -1
- package/dist/index.cjs +12611 -376
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +33 -210
- package/dist/index.d.ts +33 -210
- package/dist/index.js +12614 -366
- package/dist/index.js.map +1 -1
- package/package.json +14 -2
- /package/commands/{a11y-check.md → ux-a11y-check.md} +0 -0
- /package/commands/{design-review.md → ux-design-review.md} +0 -0
- /package/commands/{screenshot-review.md → ux-screenshot-review.md} +0 -0
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ux-toolkit",
|
|
3
|
-
"version": "0.
|
|
4
|
-
"description": "AI-powered UI/UX review toolkit with skills, agents, and commands for OpenCode and other AI coding assistants",
|
|
3
|
+
"version": "0.5.3",
|
|
4
|
+
"description": "AI-powered UI/UX review toolkit with skills, agents, and commands for OpenCode, Claude Code, and other AI coding assistants",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"ux",
|
|
7
7
|
"ui",
|
|
@@ -11,6 +11,7 @@
|
|
|
11
11
|
"heuristics",
|
|
12
12
|
"design-system",
|
|
13
13
|
"opencode",
|
|
14
|
+
"claude-code",
|
|
14
15
|
"ai-agents",
|
|
15
16
|
"mcp"
|
|
16
17
|
],
|
|
@@ -30,6 +31,7 @@
|
|
|
30
31
|
"import": "./dist/index.js",
|
|
31
32
|
"require": "./dist/index.cjs"
|
|
32
33
|
},
|
|
34
|
+
"./package.json": "./package.json",
|
|
33
35
|
"./skills/*": "./skills/*",
|
|
34
36
|
"./agents/*": "./agents/*",
|
|
35
37
|
"./commands/*": "./commands/*"
|
|
@@ -45,6 +47,7 @@
|
|
|
45
47
|
"skills",
|
|
46
48
|
"agents",
|
|
47
49
|
"commands",
|
|
50
|
+
".claude-plugin",
|
|
48
51
|
"README.md"
|
|
49
52
|
],
|
|
50
53
|
"scripts": {
|
|
@@ -55,7 +58,16 @@
|
|
|
55
58
|
"test": "vitest",
|
|
56
59
|
"typecheck": "tsc --noEmit"
|
|
57
60
|
},
|
|
61
|
+
"peerDependencies": {
|
|
62
|
+
"@opencode-ai/plugin": ">=1.0.0"
|
|
63
|
+
},
|
|
64
|
+
"peerDependenciesMeta": {
|
|
65
|
+
"@opencode-ai/plugin": {
|
|
66
|
+
"optional": true
|
|
67
|
+
}
|
|
68
|
+
},
|
|
58
69
|
"devDependencies": {
|
|
70
|
+
"@opencode-ai/plugin": "^1.1.32",
|
|
59
71
|
"@eslint/js": "^9.39.2",
|
|
60
72
|
"@types/node": "^22.0.0",
|
|
61
73
|
"eslint": "^9.0.0",
|
|
File without changes
|
|
File without changes
|
|
File without changes
|