@clux-cli/cli 0.3.0 → 0.5.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/dist/commands/web.d.ts +3 -0
- package/dist/commands/web.js +16 -0
- package/dist/commands/web.js.map +1 -0
- package/dist/index.js +26773 -4
- package/dist/index.js.map +1 -1
- package/dist/public/index.html +2210 -0
- package/dist/public/logo.svg +37 -0
- package/package.json +2 -2
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128" width="128" height="128">
|
|
2
|
+
<defs>
|
|
3
|
+
<linearGradient id="grad" x1="0%" y1="0%" x2="100%" y2="100%">
|
|
4
|
+
<stop offset="0%" stop-color="#4F46E5"/>
|
|
5
|
+
<stop offset="100%" stop-color="#06B6D4"/>
|
|
6
|
+
</linearGradient>
|
|
7
|
+
<linearGradient id="bolt" x1="0%" y1="0%" x2="100%" y2="100%">
|
|
8
|
+
<stop offset="0%" stop-color="#FFB224"/>
|
|
9
|
+
<stop offset="100%" stop-color="#F76B15"/>
|
|
10
|
+
</linearGradient>
|
|
11
|
+
</defs>
|
|
12
|
+
<!-- Background -->
|
|
13
|
+
<rect x="4" y="4" width="120" height="120" rx="26" fill="#0F0E17"/>
|
|
14
|
+
<rect x="4" y="4" width="120" height="120" rx="26" fill="none" stroke="url(#grad)" stroke-width="1.5" opacity="0.25"/>
|
|
15
|
+
<!-- Two overlapping terminal panes — multiplexer motif -->
|
|
16
|
+
<!-- Back pane (offset right+down) -->
|
|
17
|
+
<rect x="36" y="28" width="68" height="52" rx="6" fill="#1a1930" stroke="url(#grad)" stroke-width="1.5" opacity="0.5"/>
|
|
18
|
+
<!-- Front pane -->
|
|
19
|
+
<rect x="24" y="20" width="68" height="52" rx="6" fill="#13122a" stroke="url(#grad)" stroke-width="1.8"/>
|
|
20
|
+
<!-- Front pane title bar dots -->
|
|
21
|
+
<circle cx="34" cy="29" r="2.5" fill="#E5484D" opacity="0.7"/>
|
|
22
|
+
<circle cx="42" cy="29" r="2.5" fill="#FFB224" opacity="0.7"/>
|
|
23
|
+
<circle cx="50" cy="29" r="2.5" fill="#46A758" opacity="0.7"/>
|
|
24
|
+
<!-- Front pane cursor prompt -->
|
|
25
|
+
<text x="34" y="50" font-family="ui-monospace, 'SF Mono', monospace" font-weight="600" font-size="13" fill="#06B6D4" opacity="0.8">~$</text>
|
|
26
|
+
<rect x="52" y="40" width="7" height="12" rx="1" fill="#06B6D4" opacity="0.6">
|
|
27
|
+
<animate attributeName="opacity" values="0.6;0.15;0.6" dur="1.2s" repeatCount="indefinite"/>
|
|
28
|
+
</rect>
|
|
29
|
+
<!-- Horizontal line in front pane — split hint -->
|
|
30
|
+
<line x1="30" y1="57" x2="86" y2="57" stroke="url(#grad)" stroke-width="0.8" opacity="0.3"/>
|
|
31
|
+
<!-- Small prompt in bottom half -->
|
|
32
|
+
<text x="34" y="67" font-family="ui-monospace, 'SF Mono', monospace" font-weight="600" font-size="10" fill="#4F46E5" opacity="0.5">~$</text>
|
|
33
|
+
<!-- Lightning bolt — AI spark -->
|
|
34
|
+
<path d="M100 38 L92 54 L99 54 L91 72" fill="none" stroke="url(#bolt)" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
|
35
|
+
<!-- "Clux" wordmark -->
|
|
36
|
+
<text x="64" y="104" font-family="ui-rounded, 'SF Pro Rounded', system-ui, sans-serif" font-weight="700" font-size="26" fill="url(#grad)" text-anchor="middle" letter-spacing="-0.5">Clux</text>
|
|
37
|
+
</svg>
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@clux-cli/cli",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.5.0",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"bin": {
|
|
@@ -15,7 +15,7 @@
|
|
|
15
15
|
"directory": "packages/cli"
|
|
16
16
|
},
|
|
17
17
|
"scripts": {
|
|
18
|
-
"build": "tsc &&
|
|
18
|
+
"build": "tsc && node esbuild.mjs",
|
|
19
19
|
"watch": "tsc --watch",
|
|
20
20
|
"start": "node dist/index.js"
|
|
21
21
|
},
|