koneck 2.55.0 → 2.57.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/engine.d.ts.map +1 -1
- package/dist/engine.js +21 -0
- package/dist/engine.js.map +1 -1
- package/dist/partial-json.d.ts +39 -0
- package/dist/partial-json.d.ts.map +1 -0
- package/dist/partial-json.js +89 -0
- package/dist/partial-json.js.map +1 -0
- package/dist/tools.d.ts.map +1 -1
- package/dist/tools.js +56 -10
- package/dist/tools.js.map +1 -1
- package/dist/types.d.ts +7 -0
- package/dist/types.d.ts.map +1 -1
- package/dist/web/api.d.ts.map +1 -1
- package/dist/web/api.js +58 -0
- package/dist/web/api.js.map +1 -1
- package/dist/web/events.d.ts +14 -0
- package/dist/web/events.d.ts.map +1 -1
- package/dist/web/events.js.map +1 -1
- package/dist/web/jobs.d.ts.map +1 -1
- package/dist/web/jobs.js +13 -2
- package/dist/web/jobs.js.map +1 -1
- package/dist/web/sessions.d.ts.map +1 -1
- package/dist/web/sessions.js +11 -0
- package/dist/web/sessions.js.map +1 -1
- package/dist/web/ui-client.d.ts.map +1 -1
- package/dist/web/ui-client.js +351 -78
- package/dist/web/ui-client.js.map +1 -1
- package/dist/web/ui-css.d.ts +0 -13
- package/dist/web/ui-css.d.ts.map +1 -1
- package/dist/web/ui-css.js +100 -52
- package/dist/web/ui-css.js.map +1 -1
- package/dist/web/ui.d.ts.map +1 -1
- package/dist/web/ui.js +28 -14
- package/dist/web/ui.js.map +1 -1
- package/img/konect terminal.jpeg +0 -0
- package/package.json +2 -1
package/dist/web/ui-css.js
CHANGED
|
@@ -11,6 +11,38 @@
|
|
|
11
11
|
* both clear WCAG AA for body text with room to spare. The first version used #7f9aa6 for anything
|
|
12
12
|
* secondary, which measures 4.6:1 — passable on paper and genuinely hard to read on a dim screen.
|
|
13
13
|
*/
|
|
14
|
+
/*
|
|
15
|
+
* The dark palette, written once and used by both selectors that need it.
|
|
16
|
+
*
|
|
17
|
+
* It used to be written twice — once in the media query and once for the explicit `data-theme`
|
|
18
|
+
* choice — and the two had drifted. The explicit block was missing `--attn-bg`, `--attn-hit` and
|
|
19
|
+
* every `--syn-*` token, so a reader who had *chosen* dark got the light values for those: the
|
|
20
|
+
* region a tool is reading was drawn as a near-white band with near-white text on it, which is
|
|
21
|
+
* invisible, and reported as exactly that.
|
|
22
|
+
*
|
|
23
|
+
* One definition removes the whole class of bug rather than the instance. A test asserts that no
|
|
24
|
+
* token is defined in one theme and missing from another, so the next colour added cannot
|
|
25
|
+
* reintroduce it.
|
|
26
|
+
*/
|
|
27
|
+
const DARK = `
|
|
28
|
+
--bg:#0d1418; --panel:#131e24; --panel-2:#1a2932; --line:#24363f; --line-2:#2f454f;
|
|
29
|
+
--ink:#e6f1f5; --muted:#93aab5; --dim:#6f8894;
|
|
30
|
+
--cyan:#4dd6e8; --cyan-ink:#04181c; --amber:#e8b04d; --green:#57d99a; --red:#ef767b;
|
|
31
|
+
--blue:#6fb2ff; --yellow:#e8b04d; --magenta:#d79bec;
|
|
32
|
+
--violet:#b39cfb;
|
|
33
|
+
--add-bg:#12331f; --add-ink:#8ce8b4; --del-bg:#3a171a; --del-ink:#ffadb0;
|
|
34
|
+
/*
|
|
35
|
+
* The region a tool is reading, and the exact text it matched inside it.
|
|
36
|
+
*
|
|
37
|
+
* Strong enough to find at a glance without competing with the code on top of it: a lifted
|
|
38
|
+
* slate against the #131e24 panel, and a distinctly bluer band for the match. The old values
|
|
39
|
+
* were too close to the panel to see even when they were being applied.
|
|
40
|
+
*/
|
|
41
|
+
--attn-bg:#1d3a49; --attn-hit:#2f6b87;
|
|
42
|
+
--syn-com:#6b8296; --syn-str:#7ee0a7; --syn-num:#f0b166; --syn-key:#c792ea;
|
|
43
|
+
--syn-typ:#63c8f0; --syn-fun:#82aaff; --syn-pun:#7a8899;
|
|
44
|
+
--shadow:0 1px 2px rgba(0,0,0,.4), 0 8px 24px rgba(0,0,0,.3);
|
|
45
|
+
`;
|
|
14
46
|
export function css(markUrl) {
|
|
15
47
|
return `
|
|
16
48
|
:root{
|
|
@@ -23,7 +55,7 @@ export function css(markUrl) {
|
|
|
23
55
|
--violet:#6d4bc4;
|
|
24
56
|
--add-bg:#e4f6ea; --add-ink:#0d5c37; --del-bg:#fdeaea; --del-ink:#8f1c22;
|
|
25
57
|
/* The region a tool is reading, and the exact text it matched inside that region. */
|
|
26
|
-
--attn-bg:#
|
|
58
|
+
--attn-bg:#d6ecf9; --attn-hit:#9fd4f2;
|
|
27
59
|
/* Syntax. Light theme. */
|
|
28
60
|
--syn-com:#6a7d8c; --syn-str:#0a6b4f; --syn-num:#9a4b00; --syn-key:#8a2be2;
|
|
29
61
|
--syn-typ:#0b6ca8; --syn-fun:#0a5ea8; --syn-pun:#6b7785;
|
|
@@ -32,31 +64,10 @@ export function css(markUrl) {
|
|
|
32
64
|
--mark:url("${markUrl}");
|
|
33
65
|
}
|
|
34
66
|
@media (prefers-color-scheme: dark){
|
|
35
|
-
:root:not([data-theme="light"]){
|
|
36
|
-
--bg:#0d1418; --panel:#131e24; --panel-2:#1a2932; --line:#24363f; --line-2:#2f454f;
|
|
37
|
-
--ink:#e6f1f5; --muted:#93aab5; --dim:#6f8894;
|
|
38
|
-
--cyan:#4dd6e8; --cyan-ink:#04181c; --amber:#e8b04d; --green:#57d99a; --red:#ef767b;
|
|
39
|
-
--blue:#6fb2ff; --yellow:#e8b04d; --magenta:#d79bec;
|
|
40
|
-
--violet:#b39cfb;
|
|
41
|
-
--add-bg:#0f2a1e; --add-ink:#7ee0a7; --del-bg:#2b1416; --del-ink:#f4a3a6;
|
|
42
|
-
--attn-bg:#10222c; --attn-hit:#1c3f52;
|
|
43
|
-
--syn-com:#6b8296; --syn-str:#7ee0a7; --syn-num:#f0b166; --syn-key:#c792ea;
|
|
44
|
-
--syn-typ:#63c8f0; --syn-fun:#82aaff; --syn-pun:#7a8899;
|
|
45
|
-
--attn-bg:#10222c; --attn-hit:#1c3f52;
|
|
46
|
-
--syn-com:#6b8296; --syn-str:#7ee0a7; --syn-num:#f0b166; --syn-key:#c792ea;
|
|
47
|
-
--syn-typ:#63c8f0; --syn-fun:#82aaff; --syn-pun:#7a8899;
|
|
48
|
-
--shadow:0 1px 2px rgba(0,0,0,.4), 0 8px 24px rgba(0,0,0,.3);
|
|
49
|
-
}
|
|
50
|
-
}
|
|
51
|
-
:root[data-theme="dark"]{
|
|
52
|
-
--bg:#0d1418; --panel:#131e24; --panel-2:#1a2932; --line:#24363f; --line-2:#2f454f;
|
|
53
|
-
--ink:#e6f1f5; --muted:#93aab5; --dim:#6f8894;
|
|
54
|
-
--cyan:#4dd6e8; --cyan-ink:#04181c; --amber:#e8b04d; --green:#57d99a; --red:#ef767b;
|
|
55
|
-
--blue:#6fb2ff; --yellow:#e8b04d; --magenta:#d79bec;
|
|
56
|
-
--violet:#b39cfb;
|
|
57
|
-
--add-bg:#0f2a1e; --add-ink:#7ee0a7; --del-bg:#2b1416; --del-ink:#f4a3a6;
|
|
58
|
-
--shadow:0 1px 2px rgba(0,0,0,.4), 0 8px 24px rgba(0,0,0,.3);
|
|
67
|
+
:root:not([data-theme="light"]){${DARK}}
|
|
59
68
|
}
|
|
69
|
+
:root[data-theme="dark"]{${DARK}}
|
|
70
|
+
|
|
60
71
|
|
|
61
72
|
*{box-sizing:border-box}
|
|
62
73
|
html,body{height:100%}
|
|
@@ -677,6 +688,10 @@ dialog:has(.dlg.wide){max-width:560px}
|
|
|
677
688
|
font-size:11.5px;margin:2px 0 4px}
|
|
678
689
|
#fosaid{color:var(--green)}
|
|
679
690
|
|
|
691
|
+
/* A file being written, while it is being written. */
|
|
692
|
+
.wwrite{padding:8px 13px;color:var(--cyan);font-size:11.5px;border-bottom:1px solid var(--line-2)}
|
|
693
|
+
.wwbody{min-height:0}
|
|
694
|
+
|
|
680
695
|
/* A tool call with nothing to open — what was asked, and how it went. */
|
|
681
696
|
.callhead{display:flex;align-items:center;gap:8px;padding:9px 13px;border-bottom:1px solid var(--line-2)}
|
|
682
697
|
.callverb{color:var(--cyan);font-size:12px;text-transform:lowercase}
|
|
@@ -774,34 +789,67 @@ body[data-tint="high"]{filter:contrast(1.14)}
|
|
|
774
789
|
body[data-tint="soft"]{filter:contrast(.92) brightness(1.04)}
|
|
775
790
|
|
|
776
791
|
/* ── a terminal ───────────────────────────────────────────────────────────────────────────── */
|
|
777
|
-
|
|
778
|
-
.
|
|
792
|
+
/*
|
|
793
|
+
* A terminal that reads as one.
|
|
794
|
+
*
|
|
795
|
+
* The difference from the box that was here is not decoration. A terminal is a single column of
|
|
796
|
+
* monospaced text where the command you typed stays above what it printed and the cursor waits at
|
|
797
|
+
* the bottom of it. So: no card around the output, no border between the prompt and the scrollback,
|
|
798
|
+
* one background, and the input line styled as the last line of the text rather than as a form
|
|
799
|
+
* field sitting under it.
|
|
800
|
+
*/
|
|
801
|
+
/*
|
|
802
|
+
* The terminal view fills what it is given.
|
|
803
|
+
*
|
|
804
|
+
* A view scrolls its own overflow, which is right for a document and wrong for a terminal: the
|
|
805
|
+
* panes ended a third of the way down the window with dead space under them, because nothing told
|
|
806
|
+
* them how tall they were allowed to be.
|
|
807
|
+
*/
|
|
808
|
+
#terminalview{display:flex;flex-direction:column;overflow:hidden}
|
|
809
|
+
.termtop{display:flex;gap:8px;align-items:center;padding:9px 14px;background:var(--panel);
|
|
779
810
|
border-bottom:1px solid var(--line);flex:0 0 auto}
|
|
780
|
-
.
|
|
781
|
-
.
|
|
782
|
-
|
|
783
|
-
|
|
784
|
-
|
|
785
|
-
.
|
|
786
|
-
|
|
787
|
-
|
|
788
|
-
|
|
789
|
-
.
|
|
790
|
-
|
|
791
|
-
|
|
792
|
-
.
|
|
793
|
-
|
|
794
|
-
.
|
|
795
|
-
|
|
796
|
-
|
|
797
|
-
|
|
798
|
-
|
|
799
|
-
|
|
800
|
-
|
|
801
|
-
|
|
802
|
-
|
|
803
|
-
.
|
|
804
|
-
|
|
811
|
+
.termttl{font-size:12px;color:var(--muted);letter-spacing:.02em}
|
|
812
|
+
.termgap{flex:0 0 10px}
|
|
813
|
+
.termbtn{padding:4px 10px;border-radius:7px;border:1px solid var(--line-2);color:var(--muted);
|
|
814
|
+
background:transparent;cursor:pointer;font-size:11.5px}
|
|
815
|
+
.termbtn:hover{border-color:var(--cyan);color:var(--cyan)}
|
|
816
|
+
.termchk{display:flex;gap:5px;align-items:center;font-size:11.5px;color:var(--muted);cursor:pointer}
|
|
817
|
+
.termchk input{accent-color:var(--cyan);cursor:pointer}
|
|
818
|
+
#tbgop{width:88px;accent-color:var(--cyan)}
|
|
819
|
+
|
|
820
|
+
.termpanes{--term-font:12.5px;--term-bg-strength:0;--term-bg-image:none;
|
|
821
|
+
flex:1;display:flex;min-height:0;background:var(--bg)}
|
|
822
|
+
.termgrip{flex:0 0 5px;cursor:col-resize;background:var(--line);opacity:.6}
|
|
823
|
+
.termgrip:hover{background:var(--cyan);opacity:1}
|
|
824
|
+
|
|
825
|
+
.termpane{position:relative;display:flex;flex-direction:column;min-width:0;min-height:0;
|
|
826
|
+
border-left:1px solid transparent}
|
|
827
|
+
.termpane.on{border-left-color:var(--cyan)}
|
|
828
|
+
/*
|
|
829
|
+
* The backdrop sits behind the text at a weight the reader chooses, and never on top of it.
|
|
830
|
+
*
|
|
831
|
+
* Its own layer rather than a background on the pane: an image behind live text needs to be dimmed
|
|
832
|
+
* without dimming the text, and an opacity on the pane itself would take the characters with it.
|
|
833
|
+
*/
|
|
834
|
+
.termpane::before{content:'';position:absolute;inset:0;pointer-events:none;
|
|
835
|
+
background-image:var(--term-bg-image);background-size:cover;background-position:center;
|
|
836
|
+
opacity:var(--term-bg-strength);transition:opacity .18s ease}
|
|
837
|
+
.termscroll{position:relative;flex:1;min-height:0;overflow:auto;padding:12px 14px 4px}
|
|
838
|
+
.termbody{margin:0;font-family:var(--mono);font-size:var(--term-font);line-height:1.55;
|
|
839
|
+
white-space:pre-wrap;word-break:break-word;color:var(--ink)}
|
|
840
|
+
.termrow{position:relative;display:flex;gap:8px;align-items:center;padding:2px 14px 12px}
|
|
841
|
+
.termps{font-family:var(--mono);font-size:var(--term-font);color:var(--cyan);flex:0 0 auto}
|
|
842
|
+
/*
|
|
843
|
+
* The input is the last line of the scrollback, not a control under it: no border, no background,
|
|
844
|
+
* the same font and size as the text above, and a caret that looks like a terminal's.
|
|
845
|
+
*/
|
|
846
|
+
.termin{flex:1;min-width:0;border:0;outline:0;background:transparent;color:var(--ink);
|
|
847
|
+
font-family:var(--mono);font-size:var(--term-font);line-height:1.55;caret-color:var(--cyan);
|
|
848
|
+
padding:0}
|
|
849
|
+
.termin::placeholder{color:var(--dim)}
|
|
850
|
+
.termstop{flex:0 0 auto;padding:2px 9px;border-radius:6px;border:1px solid var(--red);
|
|
851
|
+
color:var(--red);background:transparent;cursor:pointer;font-size:10.5px}
|
|
852
|
+
.termpanes .oe{color:var(--red)}
|
|
805
853
|
|
|
806
854
|
/* ── the page, as it really renders ───────────────────────────────────────────────────────── */
|
|
807
855
|
.pvbar{display:flex;gap:8px;align-items:center;padding:11px 14px;background:var(--panel);
|
package/dist/web/ui-css.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ui-css.js","sourceRoot":"","sources":["../../src/web/ui-css.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;GAYG;AACH,MAAM,UAAU,GAAG,CAAC,OAAe;IACjC,OAAO;;;;;;;;;;;;;;;;;gBAiBO,OAAO
|
|
1
|
+
{"version":3,"file":"ui-css.js","sourceRoot":"","sources":["../../src/web/ui-css.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;GAYG;AACH;;;;;;;;;;;;GAYG;AACH,MAAM,IAAI,GAAG;;;;;;;;;;;;;;;;;;CAkBZ,CAAC;AAEF,MAAM,UAAU,GAAG,CAAC,OAAe;IACjC,OAAO;;;;;;;;;;;;;;;;;gBAiBO,OAAO;;;oCAGa,IAAI;;2BAEb,IAAI;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAi7B9B,CAAC;AACF,CAAC"}
|
package/dist/web/ui.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ui.d.ts","sourceRoot":"","sources":["../../src/web/ui.ts"],"names":[],"mappings":"AAAA;;;;;;;;GAQG;AAOH,wBAAgB,IAAI,IAAI,MAAM,
|
|
1
|
+
{"version":3,"file":"ui.d.ts","sourceRoot":"","sources":["../../src/web/ui.ts"],"names":[],"mappings":"AAAA;;;;;;;;GAQG;AAOH,wBAAgB,IAAI,IAAI,MAAM,CAiX7B"}
|
package/dist/web/ui.js
CHANGED
|
@@ -127,21 +127,35 @@ export function page() {
|
|
|
127
127
|
</div>
|
|
128
128
|
|
|
129
129
|
<!-- A terminal. Commands you run yourself, in the foreground or left running behind. -->
|
|
130
|
+
<!--
|
|
131
|
+
A terminal, not a form with an output box.
|
|
132
|
+
==========================================
|
|
133
|
+
What was here was a job list beside a pane of text: you typed into a field at the top, picked a
|
|
134
|
+
row, and read the result. Everything about it said "web page". A terminal is a scrollback where
|
|
135
|
+
the command you typed stays visible above what it printed, the cursor waits at the bottom, and
|
|
136
|
+
the next thing you type continues the same column of text.
|
|
137
|
+
|
|
138
|
+
Up to three panes, because two is the common case for "watch the server, run the tests" and
|
|
139
|
+
four on a laptop is four things too narrow to read. Each pane is its own shell with its own
|
|
140
|
+
scrollback and its own history; the dividers between them are draggable.
|
|
141
|
+
-->
|
|
130
142
|
<div class="view" id="terminalview" hidden>
|
|
131
|
-
<div class="
|
|
132
|
-
<
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
<
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
143
|
+
<div class="termtop">
|
|
144
|
+
<span class="termttl">Terminal</span>
|
|
145
|
+
<button type="button" class="termbtn" id="tsplit" title="Add a pane (up to three)">split</button>
|
|
146
|
+
<button type="button" class="termbtn" id="tunsplit" title="Close the last pane">unsplit</button>
|
|
147
|
+
<span class="termgap"></span>
|
|
148
|
+
<label class="termchk" title="A picture behind the text, at a weight that keeps it readable">
|
|
149
|
+
<input type="checkbox" id="tbgimg"> backdrop
|
|
150
|
+
</label>
|
|
151
|
+
<input type="range" id="tbgop" min="4" max="40" value="14" title="How strongly it shows"
|
|
152
|
+
aria-label="Backdrop strength">
|
|
153
|
+
<span class="termgap"></span>
|
|
154
|
+
<button type="button" class="termbtn" id="tfontdown" title="Smaller text">A−</button>
|
|
155
|
+
<button type="button" class="termbtn" id="tfontup" title="Larger text">A+</button>
|
|
156
|
+
</div>
|
|
157
|
+
<div class="termpanes" id="termpanes"></div>
|
|
158
|
+
</div>
|
|
145
159
|
</div>
|
|
146
160
|
</div>
|
|
147
161
|
|
package/dist/web/ui.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ui.js","sourceRoot":"","sources":["../../src/web/ui.ts"],"names":[],"mappings":"AAAA;;;;;;;;GAQG;AAEH,OAAO,EAAE,SAAS,EAAE,MAAM,WAAW,CAAC;AACtC,OAAO,EAAE,UAAU,EAAE,MAAM,kBAAkB,CAAC;AAC9C,OAAO,EAAE,GAAG,EAAE,MAAM,aAAa,CAAC;AAClC,OAAO,EAAE,YAAY,EAAE,MAAM,gBAAgB,CAAC;AAE9C,MAAM,UAAU,IAAI;IAClB,OAAO;;;;;;;SAOA,GAAG,CAAC,SAAS,CAAC
|
|
1
|
+
{"version":3,"file":"ui.js","sourceRoot":"","sources":["../../src/web/ui.ts"],"names":[],"mappings":"AAAA;;;;;;;;GAQG;AAEH,OAAO,EAAE,SAAS,EAAE,MAAM,WAAW,CAAC;AACtC,OAAO,EAAE,UAAU,EAAE,MAAM,kBAAkB,CAAC;AAC9C,OAAO,EAAE,GAAG,EAAE,MAAM,aAAa,CAAC;AAClC,OAAO,EAAE,YAAY,EAAE,MAAM,gBAAgB,CAAC;AAE9C,MAAM,UAAU,IAAI;IAClB,OAAO;;;;;;;SAOA,GAAG,CAAC,SAAS,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;qBAqWF,IAAI,CAAC,SAAS,CAAC,UAAU,CAAC;EAC7C,YAAY,EAAE;;eAED,CAAC;AAChB,CAAC"}
|
|
Binary file
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "koneck",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.57.0",
|
|
4
4
|
"description": "Kinetically Orchestrated Neural Execution Engine for Code",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -30,6 +30,7 @@
|
|
|
30
30
|
],
|
|
31
31
|
"files": [
|
|
32
32
|
"dist/",
|
|
33
|
+
"img/",
|
|
33
34
|
"README.md",
|
|
34
35
|
"LICENSE"
|
|
35
36
|
],
|