@bonginkan/maria-lite 6.2.3 → 6.3.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.
@@ -331,6 +331,7 @@ var init_helpers = __esm({
331
331
  phone: "linear-gradient(135deg, #0891b2, #06b6d4)",
332
332
  google: "linear-gradient(135deg, #4285f4, #34a853)",
333
333
  multiverse: "linear-gradient(135deg, #7c3aed, #c084fc)",
334
+ daily: "linear-gradient(135deg, #0d9488, #06b6d4)",
334
335
  system: "linear-gradient(135deg, #64748b, #94a3b8)"
335
336
  };
336
337
  LUCIDE_FOLDER_ICONS = {
@@ -346,6 +347,7 @@ var init_helpers = __esm({
346
347
  academic: "graduation-cap",
347
348
  phone: "phone",
348
349
  google: "globe",
350
+ daily: "calendar-clock",
349
351
  multiverse: "orbit",
350
352
  system: "settings"
351
353
  };
@@ -367,10 +369,18 @@ var init_helpers = __esm({
367
369
  research: "search",
368
370
  music: "music",
369
371
  calculator: "calculator",
370
- "weekly-report": "clipboard-list",
371
372
  competitors: "trophy",
372
373
  "task-distribution": "kanban",
373
374
  __terminal: "terminal",
375
+ // Daily Intelligence
376
+ "weekly-report": "clipboard-list",
377
+ "daily-report": "clipboard-check",
378
+ "daily-news": "newspaper",
379
+ "daily-papers": "graduation-cap",
380
+ "daily-insights": "lightbulb",
381
+ "discord-setup": "bell",
382
+ "billing-pl": "wallet",
383
+ "dev-adviser": "user-check",
374
384
  // CXO Agents
375
385
  ceo: "crown",
376
386
  coo: "target",
@@ -607,7 +617,14 @@ var init_state = __esm({
607
617
  label: "Basic Tools",
608
618
  emoji: "\u{1F4AC}",
609
619
  serverCategories: [],
610
- commandIds: ["chat", "image", "video", "research", "music", "calculator", "weekly-report", "competitors", "task-distribution", "__terminal"]
620
+ commandIds: ["chat", "image", "video", "research", "music", "calculator", "competitors", "task-distribution", "__terminal"]
621
+ },
622
+ {
623
+ id: "daily",
624
+ label: "Daily Intelligence",
625
+ emoji: "\u{1F4CA}",
626
+ serverCategories: ["daily"],
627
+ commandIds: ["daily-report", "daily-news", "daily-papers", "daily-insights", "weekly-report", "discord-setup", "billing-pl"]
611
628
  },
612
629
  {
613
630
  id: "cxo",
@@ -628,7 +645,7 @@ var init_state = __esm({
628
645
  label: "Development",
629
646
  emoji: "\u{1F6E0}\uFE0F",
630
647
  serverCategories: ["development"],
631
- commandIds: ["code", "develop", "auto-dev", "git", "gh", "doctor", "assert", "rollback", "deps"]
648
+ commandIds: ["code", "develop", "auto-dev", "git", "gh", "doctor", "assert", "rollback", "deps", "dev-adviser"]
632
649
  },
633
650
  {
634
651
  id: "integrations",
@@ -8219,6 +8236,7 @@ async function renderList(container) {
8219
8236
  return {
8220
8237
  events: (data.events || []).map((ev) => ({
8221
8238
  ...ev,
8239
+ isAllDay: ev.isAllDay ?? Boolean(ev.start && !ev.start.includes("T")),
8222
8240
  calendarId: calId,
8223
8241
  calendarColor: calInfo?.backgroundColor || "#4285f4",
8224
8242
  calendarName: calInfo?.summary || (calId === "primary" ? "My Calendar" : calId)
@@ -8302,8 +8320,9 @@ async function renderDetail(container) {
8302
8320
  const ev = data.event;
8303
8321
  calCurrentEvent = ev;
8304
8322
  const useLucide = state.iconStyle === "modern" || state.iconStyle === "minimal";
8323
+ const isAllDay = ev.isAllDay || Boolean(ev.start && !ev.start.includes("T"));
8305
8324
  let html = `<div class="gc-detail">`;
8306
- html += `<div class="gc-detail-title">${esc(ev.summary)}</div>`;
8325
+ html += `<div class="gc-detail-title">${esc(ev.summary)}${isAllDay ? `<span style="display:inline-block;font-size:.6em;padding:2px 8px;border-radius:var(--radius-sm);background:rgba(66,133,244,.12);color:var(--accent);margin-left:8px;vertical-align:middle;font-weight:600;">All day</span>` : ""}</div>`;
8307
8326
  html += detailRow("When", `${formatDateTime(ev.start)} \u2192 ${formatDateTime(ev.end)}`);
8308
8327
  if (ev.location) html += detailRow("Location", ev.location);
8309
8328
  if (ev.description) html += detailRow("Description", ev.description);
@@ -8388,8 +8407,9 @@ function renderCreate(container) {
8388
8407
  }
8389
8408
  let html = `<div class="gc-create">`;
8390
8409
  html += `<label>Title<input class="gc-f-title" type="text" placeholder="Meeting title" /></label>`;
8391
- html += `<label>Start<input class="gc-f-start" type="datetime-local" value="${prefill ? toLocal(prefill.start) : defaultStart}" /></label>`;
8392
- html += `<label>End<input class="gc-f-end" type="datetime-local" value="${prefill ? toLocal(prefill.end) : defaultEnd}" /></label>`;
8410
+ html += `<label style="display:flex;align-items:center;gap:6px;margin-bottom:8px;cursor:pointer;flex-direction:row;"><input class="gc-f-allday" type="checkbox" id="create-allday" /><span style="font-size:.82em;font-weight:600;">All day</span></label>`;
8411
+ html += `<label>Start<input class="gc-f-start" id="create-start" type="datetime-local" value="${prefill ? toLocal(prefill.start) : defaultStart}" /></label>`;
8412
+ html += `<label>End<input class="gc-f-end" id="create-end" type="datetime-local" value="${prefill ? toLocal(prefill.end) : defaultEnd}" /></label>`;
8393
8413
  html += `<label>Location (optional)<input class="gc-f-location" type="text" placeholder="Room or address" /></label>`;
8394
8414
  html += `<label>Description (optional)<textarea class="gc-f-desc" placeholder="Notes..."></textarea></label>`;
8395
8415
  html += `<label>Attendees${prefill ? "" : " (optional)"}<input class="gc-f-attendees" type="text" value="${prefill ? esc(prefill.attendees) : ""}" placeholder="email1@example.com, email2@example.com" /></label>`;
@@ -8398,6 +8418,29 @@ function renderCreate(container) {
8398
8418
  html += `<div class="gc-create-status"></div>`;
8399
8419
  html += `</div>`;
8400
8420
  container.innerHTML = html;
8421
+ const allDayCheck = container.querySelector("#create-allday");
8422
+ if (allDayCheck) {
8423
+ allDayCheck.addEventListener("change", () => {
8424
+ const startInput = container.querySelector("#create-start");
8425
+ const endInput = container.querySelector("#create-end");
8426
+ if (!startInput || !endInput) return;
8427
+ if (allDayCheck.checked) {
8428
+ const startDate = startInput.value.split("T")[0] || "";
8429
+ const endDate = endInput.value.split("T")[0] || "";
8430
+ startInput.type = "date";
8431
+ endInput.type = "date";
8432
+ startInput.value = startDate;
8433
+ endInput.value = endDate;
8434
+ } else {
8435
+ const startDate = startInput.value || "";
8436
+ const endDate = endInput.value || "";
8437
+ startInput.type = "datetime-local";
8438
+ endInput.type = "datetime-local";
8439
+ startInput.value = startDate ? `${startDate}T09:00` : "";
8440
+ endInput.value = endDate ? `${endDate}T10:00` : "";
8441
+ }
8442
+ });
8443
+ }
8401
8444
  container.querySelector(".gc-create-btn").addEventListener("click", () => void handleCreate2(container));
8402
8445
  }
8403
8446
  async function handleCreate2(container) {
@@ -8408,6 +8451,8 @@ async function handleCreate2(container) {
8408
8451
  const desc = container.querySelector(".gc-f-desc").value.trim();
8409
8452
  const attendees = container.querySelector(".gc-f-attendees").value.trim();
8410
8453
  const addMeet = container.querySelector(".gc-f-meet").checked;
8454
+ const allDayCheck = container.querySelector(".gc-f-allday");
8455
+ const isAllDay = allDayCheck?.checked || false;
8411
8456
  const statusEl = container.querySelector(".gc-create-status");
8412
8457
  const btn = container.querySelector(".gc-create-btn");
8413
8458
  if (!title) {
@@ -8422,8 +8467,15 @@ async function handleCreate2(container) {
8422
8467
  statusEl.innerHTML = `<span class="gc-status-err">End time is required</span>`;
8423
8468
  return;
8424
8469
  }
8425
- const start = new Date(startRaw).toISOString();
8426
- const end = new Date(endRaw).toISOString();
8470
+ let start;
8471
+ let end;
8472
+ if (isAllDay) {
8473
+ start = startRaw;
8474
+ end = endRaw;
8475
+ } else {
8476
+ start = new Date(startRaw).toISOString();
8477
+ end = new Date(endRaw).toISOString();
8478
+ }
8427
8479
  btn.disabled = true;
8428
8480
  btn.textContent = "Creating...";
8429
8481
  statusEl.textContent = "";
@@ -8435,6 +8487,7 @@ async function handleCreate2(container) {
8435
8487
  title,
8436
8488
  start,
8437
8489
  end,
8490
+ isAllDay,
8438
8491
  description: desc || void 0,
8439
8492
  attendees: attendees || void 0,
8440
8493
  location: location || void 0,
@@ -8466,20 +8519,27 @@ function renderEdit(container) {
8466
8519
  renderApp2();
8467
8520
  return;
8468
8521
  }
8522
+ const eventIsAllDay = ev.isAllDay || Boolean(ev.start && !ev.start.includes("T"));
8469
8523
  const toLocal = (iso) => {
8470
- if (!iso || !iso.includes("T")) return "";
8524
+ if (!iso) return { value: "", isAllDay: false };
8525
+ if (!iso.includes("T")) return { value: iso, isAllDay: true };
8471
8526
  try {
8472
8527
  const d = new Date(iso);
8473
8528
  const pad = (n) => String(n).padStart(2, "0");
8474
- return `${d.getFullYear()}-${pad(d.getMonth() + 1)}-${pad(d.getDate())}T${pad(d.getHours())}:${pad(d.getMinutes())}`;
8529
+ const formatted = `${d.getFullYear()}-${pad(d.getMonth() + 1)}-${pad(d.getDate())}T${pad(d.getHours())}:${pad(d.getMinutes())}`;
8530
+ return { value: formatted, isAllDay: false };
8475
8531
  } catch {
8476
- return "";
8532
+ return { value: "", isAllDay: false };
8477
8533
  }
8478
8534
  };
8535
+ const startParsed = toLocal(ev.start);
8536
+ const endParsed = toLocal(ev.end);
8537
+ const inputType = eventIsAllDay ? "date" : "datetime-local";
8479
8538
  let html = `<div class="gc-create">`;
8480
8539
  html += `<label>Title<input class="gc-f-title" type="text" value="${esc(ev.summary)}" /></label>`;
8481
- html += `<label>Start<input class="gc-f-start" type="datetime-local" value="${toLocal(ev.start)}" /></label>`;
8482
- html += `<label>End<input class="gc-f-end" type="datetime-local" value="${toLocal(ev.end)}" /></label>`;
8540
+ html += `<label style="display:flex;align-items:center;gap:6px;margin-bottom:8px;cursor:pointer;flex-direction:row;"><input class="gc-f-allday" type="checkbox" id="edit-allday"${eventIsAllDay ? " checked" : ""} /><span style="font-size:.82em;font-weight:600;">All day</span></label>`;
8541
+ html += `<label>Start<input class="gc-f-start" id="edit-start" type="${inputType}" value="${esc(startParsed.value)}" /></label>`;
8542
+ html += `<label>End<input class="gc-f-end" id="edit-end" type="${inputType}" value="${esc(endParsed.value)}" /></label>`;
8483
8543
  html += `<label>Location<input class="gc-f-location" type="text" value="${esc(ev.location)}" placeholder="Room or address" /></label>`;
8484
8544
  html += `<label>Description<textarea class="gc-f-desc">${esc(ev.description)}</textarea></label>`;
8485
8545
  html += `<label>Attendees<input class="gc-f-attendees" type="text" value="${esc(ev.attendees.join(", "))}" placeholder="email1@example.com, email2@example.com" /></label>`;
@@ -8487,6 +8547,29 @@ function renderEdit(container) {
8487
8547
  html += `<div class="gc-create-status"></div>`;
8488
8548
  html += `</div>`;
8489
8549
  container.innerHTML = html;
8550
+ const allDayCheck = container.querySelector("#edit-allday");
8551
+ if (allDayCheck) {
8552
+ allDayCheck.addEventListener("change", () => {
8553
+ const startInput = container.querySelector("#edit-start");
8554
+ const endInput = container.querySelector("#edit-end");
8555
+ if (!startInput || !endInput) return;
8556
+ if (allDayCheck.checked) {
8557
+ const startDate = startInput.value.split("T")[0] || "";
8558
+ const endDate = endInput.value.split("T")[0] || "";
8559
+ startInput.type = "date";
8560
+ endInput.type = "date";
8561
+ startInput.value = startDate;
8562
+ endInput.value = endDate;
8563
+ } else {
8564
+ const startDate = startInput.value || "";
8565
+ const endDate = endInput.value || "";
8566
+ startInput.type = "datetime-local";
8567
+ endInput.type = "datetime-local";
8568
+ startInput.value = startDate ? `${startDate}T09:00` : "";
8569
+ endInput.value = endDate ? `${endDate}T10:00` : "";
8570
+ }
8571
+ });
8572
+ }
8490
8573
  container.querySelector(".gc-create-btn").addEventListener("click", () => void handleEdit(container, ev));
8491
8574
  }
8492
8575
  async function handleEdit(container, ev) {
@@ -8496,6 +8579,8 @@ async function handleEdit(container, ev) {
8496
8579
  const location = container.querySelector(".gc-f-location").value.trim();
8497
8580
  const desc = container.querySelector(".gc-f-desc").value.trim();
8498
8581
  const attendees = container.querySelector(".gc-f-attendees").value.trim();
8582
+ const allDayCheck = container.querySelector(".gc-f-allday");
8583
+ const isAllDay = allDayCheck?.checked || false;
8499
8584
  const statusEl = container.querySelector(".gc-create-status");
8500
8585
  const btn = container.querySelector(".gc-create-btn");
8501
8586
  if (!title) {
@@ -8510,8 +8595,15 @@ async function handleEdit(container, ev) {
8510
8595
  statusEl.innerHTML = `<span class="gc-status-err">End time is required</span>`;
8511
8596
  return;
8512
8597
  }
8513
- const start = new Date(startRaw).toISOString();
8514
- const end = new Date(endRaw).toISOString();
8598
+ let start;
8599
+ let end;
8600
+ if (isAllDay) {
8601
+ start = startRaw;
8602
+ end = endRaw;
8603
+ } else {
8604
+ start = new Date(startRaw).toISOString();
8605
+ end = new Date(endRaw).toISOString();
8606
+ }
8515
8607
  btn.disabled = true;
8516
8608
  btn.textContent = "Saving...";
8517
8609
  statusEl.textContent = "";
@@ -8519,7 +8611,7 @@ async function handleEdit(container, ev) {
8519
8611
  const res = await apiJson(`/api/google/calendar/events/${encodeURIComponent(ev.id)}`, {
8520
8612
  method: "PUT",
8521
8613
  headers: { "Content-Type": "application/json" },
8522
- body: JSON.stringify({ title, start, end, description: desc, attendees, location, calendarId: calCurrentCalendarId || "primary" })
8614
+ body: JSON.stringify({ title, start, end, isAllDay, description: desc, attendees, location, calendarId: calCurrentCalendarId || "primary" })
8523
8615
  });
8524
8616
  if (res.ok || res.updated) {
8525
8617
  statusEl.innerHTML = `<span class="gc-status-ok">Event updated!</span>`;
@@ -8844,9 +8936,10 @@ var init_google_calendar = __esm({
8844
8936
  .gc-create{padding:16px;display:flex;flex-direction:column;gap:10px}
8845
8937
  .gc-create label{font-size:.82em;font-weight:600;display:flex;flex-direction:column;gap:4px}
8846
8938
  .gc-create input,.gc-create textarea,.gc-create select{padding:8px 10px;border:1px solid var(--input-border);border-radius:var(--radius-sm);font-size:.88em;background:var(--input-bg);color:var(--fg);font-family:var(--sans)}
8847
- .gc-create input[type="datetime-local"]{color:var(--fg);font-family:inherit}
8939
+ .gc-create input[type="datetime-local"],.gc-create input[type="date"]{color:var(--fg);font-family:inherit}
8848
8940
  .gc-create input[type="datetime-local"]::-webkit-datetime-edit,.gc-create input[type="datetime-local"]::-webkit-datetime-edit-fields-wrapper,.gc-create input[type="datetime-local"]::-webkit-datetime-edit-text,.gc-create input[type="datetime-local"]::-webkit-datetime-edit-month-field,.gc-create input[type="datetime-local"]::-webkit-datetime-edit-day-field,.gc-create input[type="datetime-local"]::-webkit-datetime-edit-year-field,.gc-create input[type="datetime-local"]::-webkit-datetime-edit-hour-field,.gc-create input[type="datetime-local"]::-webkit-datetime-edit-minute-field,.gc-create input[type="datetime-local"]::-webkit-datetime-edit-ampm-field{color:inherit;font-family:inherit}
8849
- .gc-create input[type="datetime-local"]::-webkit-calendar-picker-indicator{filter:var(--calendar-picker-filter,none)}
8941
+ .gc-create input[type="date"]::-webkit-datetime-edit,.gc-create input[type="date"]::-webkit-datetime-edit-fields-wrapper,.gc-create input[type="date"]::-webkit-datetime-edit-text,.gc-create input[type="date"]::-webkit-datetime-edit-month-field,.gc-create input[type="date"]::-webkit-datetime-edit-day-field,.gc-create input[type="date"]::-webkit-datetime-edit-year-field{color:inherit;font-family:inherit}
8942
+ .gc-create input[type="datetime-local"]::-webkit-calendar-picker-indicator,.gc-create input[type="date"]::-webkit-calendar-picker-indicator{filter:var(--calendar-picker-filter,none)}
8850
8943
  .gc-create textarea{min-height:80px;resize:vertical}
8851
8944
  .gc-create-btn{padding:10px 24px;border:none;color:#fff;background:linear-gradient(135deg,#4285f4,#34a853);border-radius:var(--radius);cursor:pointer;font-weight:700;font-size:.92em;align-self:flex-start}
8852
8945
  .gc-create-btn:disabled{opacity:.5;cursor:not-allowed}
@@ -13005,6 +13098,21 @@ function attachGlobalFolderDnD() {
13005
13098
  }, true);
13006
13099
  }
13007
13100
  function attachGlobalListeners() {
13101
+ const disableAutoCorrect = (el) => {
13102
+ el.setAttribute("autocapitalize", "off");
13103
+ el.setAttribute("autocorrect", "off");
13104
+ if (!el.getAttribute("spellcheck")) el.setAttribute("spellcheck", "false");
13105
+ };
13106
+ document.querySelectorAll("input, textarea").forEach(disableAutoCorrect);
13107
+ new MutationObserver((mutations) => {
13108
+ for (const m of mutations) {
13109
+ for (const node of m.addedNodes) {
13110
+ if (!(node instanceof HTMLElement)) continue;
13111
+ if (node.tagName === "INPUT" || node.tagName === "TEXTAREA") disableAutoCorrect(node);
13112
+ node.querySelectorAll?.("input, textarea").forEach(disableAutoCorrect);
13113
+ }
13114
+ }
13115
+ }).observe(document.body, { childList: true, subtree: true });
13008
13116
  const startBtn = document.getElementById("startBtn");
13009
13117
  if (startBtn) {
13010
13118
  startBtn.addEventListener("click", (e) => {
package/dist/ext.cjs CHANGED
@@ -98004,7 +98004,7 @@ function resolvePackageJsonNearEntrypoint() {
98004
98004
  }
98005
98005
  function resolveMariaLiteVersionInfo() {
98006
98006
  const fallbackName = EXPECTED_PKG_NAME;
98007
- const fallbackVersion = String(process.env.MARIA_LITE_VERSION || "").trim() || "6.2.3";
98007
+ const fallbackVersion = String(process.env.MARIA_LITE_VERSION || "").trim() || "6.3.0";
98008
98008
  const near = resolvePackageJsonNearEntrypoint();
98009
98009
  if (near) {
98010
98010
  const name = fallbackName;
package/dist/ext.d.cts CHANGED
@@ -1,4 +1,4 @@
1
- type LiteBuiltInCommandId = "login" | "logout" | "account" | "help" | "version" | "vup" | "connect" | "api-secret" | "bulk-register" | "recompile-api" | "skills" | "plugins" | "gen-skills" | "git" | "gh" | "research" | "kp-sync" | "kp-generate" | "kp-update" | "kp-synthesis" | "origin-fetch" | "deps" | "pdf" | "docs" | "stop" | "restart" | "chat" | "code" | "develop" | "auto-dev" | "doctor" | "evolve" | "universe" | "blog" | "image" | "video" | "music" | "manga" | "slides" | "proposal" | "novel" | "ceo" | "coo" | "cpo" | "cto" | "caio" | "cxo" | "ceo-clone" | "cto-clone" | "caio-clone" | "coo-clone" | "cpo-clone" | "desktop" | "spreadsheet" | "task-manager" | "calculator" | "twin" | "phone-tenant" | "phone-dept" | "phone-prompt" | "phone-dict" | "phone-hp-import" | "phone-deploy" | "phone-init";
1
+ type LiteBuiltInCommandId = "login" | "logout" | "account" | "help" | "version" | "vup" | "connect" | "api-secret" | "bulk-register" | "recompile-api" | "skills" | "plugins" | "gen-skills" | "git" | "gh" | "research" | "kp-sync" | "kp-generate" | "kp-update" | "kp-synthesis" | "origin-fetch" | "deps" | "pdf" | "docs" | "stop" | "restart" | "chat" | "code" | "develop" | "auto-dev" | "doctor" | "evolve" | "universe" | "blog" | "image" | "video" | "music" | "manga" | "slides" | "proposal" | "novel" | "ceo" | "coo" | "cpo" | "cto" | "caio" | "cxo" | "ceo-clone" | "cto-clone" | "caio-clone" | "coo-clone" | "cpo-clone" | "desktop" | "spreadsheet" | "task-manager" | "calculator" | "twin" | "phone-tenant" | "phone-dept" | "phone-prompt" | "phone-dict" | "phone-hp-import" | "phone-deploy" | "phone-init" | "daily-report" | "daily-news" | "daily-papers" | "daily-insights" | "discord-setup" | "billing-pl" | "dev-adviser";
2
2
  type LiteCommandId = LiteBuiltInCommandId | (string & {});
3
3
  type LiteStepOutcome = "PASS" | "WARN" | "STOP";
4
4
  type LiteStepResult = {
@@ -2071,6 +2071,21 @@ async function loadUniverse() {
2071
2071
  renderNodeDetail(state.uni.selectedNodeId || "");
2072
2072
  }
2073
2073
  function attach() {
2074
+ const disableAutoCorrect = (el) => {
2075
+ el.setAttribute("autocapitalize", "off");
2076
+ el.setAttribute("autocorrect", "off");
2077
+ if (!el.getAttribute("spellcheck")) el.setAttribute("spellcheck", "false");
2078
+ };
2079
+ document.querySelectorAll("input, textarea").forEach(disableAutoCorrect);
2080
+ new MutationObserver((mutations) => {
2081
+ for (const m of mutations) {
2082
+ for (const node of m.addedNodes) {
2083
+ if (!(node instanceof HTMLElement)) continue;
2084
+ if (node.tagName === "INPUT" || node.tagName === "TEXTAREA") disableAutoCorrect(node);
2085
+ node.querySelectorAll?.("input, textarea").forEach(disableAutoCorrect);
2086
+ }
2087
+ }
2088
+ }).observe(document.body, { childList: true, subtree: true });
2074
2089
  $("tabs").addEventListener("click", (e) => {
2075
2090
  const t = e.target?.closest ? e.target.closest(".tab") : null;
2076
2091
  if (!t) return;
@@ -1 +1 @@
1
- {"buildTimestamp":"2026-03-02T01:56:36.823Z","fileCount":952,"indexJsonlRelPath":"src-lite/origin/index.jsonl","schemaVersion":"maria_lite_origin_index_meta_v1","sourceDir":"src-lite/origin","textExtractedCount":952}
1
+ {"buildTimestamp":"2026-03-03T11:59:37.342Z","fileCount":952,"indexJsonlRelPath":"src-lite/origin/index.jsonl","schemaVersion":"maria_lite_origin_index_meta_v1","sourceDir":"src-lite/origin","textExtractedCount":952}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bonginkan/maria-lite",
3
- "version": "6.2.3",
3
+ "version": "6.3.0",
4
4
  "description": "MARIA-LITE: lightweight MARIA OS CLI (src-lite).",
5
5
  "license": "SEE LICENSE IN LICENSE",
6
6
  "author": "Bonginkan Inc.",