@bonginkan/maria 3.0.3 → 3.0.5

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/README.md CHANGED
@@ -1,4 +1,4 @@
1
- # 🚀 MARIA v3.0.3
1
+ # 🚀 MARIA v3.0.4
2
2
 
3
3
  **Stable & Reliable** - AI-powered development platform with 50+ working commands, all core features fixed and production-ready.
4
4
 
@@ -34749,11 +34749,31 @@ Vim keybindings disabled.`;
34749
34749
  try {
34750
34750
  const fs22 = await import("fs/promises");
34751
34751
  const _path = await import("path");
34752
- const _packagePath = _path.resolve(process.cwd(), "package.json");
34753
- const _packageData = JSON.parse(await fs22.readFile(_packagePath, "utf8"));
34752
+ const possiblePaths = [
34753
+ _path.resolve(__dirname, "../package.json"),
34754
+ // From dist directory
34755
+ _path.resolve(__dirname, "../../package.json"),
34756
+ // From nested dist
34757
+ _path.resolve(process.cwd(), "package.json"),
34758
+ // Current directory
34759
+ "/opt/homebrew/lib/node_modules/@bonginkan/maria/package.json"
34760
+ // Global npm
34761
+ ];
34762
+ let _packageData = null;
34763
+ for (const packagePath of possiblePaths) {
34764
+ try {
34765
+ const data2 = await fs22.readFile(packagePath, "utf8");
34766
+ _packageData = JSON.parse(data2);
34767
+ if (_packageData["version"]) {
34768
+ break;
34769
+ }
34770
+ } catch {
34771
+ }
34772
+ }
34773
+ const version2 = _packageData?.["version"] || "3.0.5";
34754
34774
  return {
34755
34775
  success: true,
34756
- message: `MARIA CODE CLI v${_packageData["version"] || "1.0.0"}
34776
+ message: `MARIA CODE CLI v${version2}
34757
34777
 
34758
34778
  AI-Powered Development Platform
34759
34779
  \xA9 2025 Bonginkan Inc.
@@ -34763,7 +34783,7 @@ TypeScript Monorepo`
34763
34783
  } catch {
34764
34784
  return {
34765
34785
  success: true,
34766
- message: `MARIA CODE CLI v1.0.0
34786
+ message: `MARIA CODE CLI v3.0.5
34767
34787
 
34768
34788
  AI-Powered Development Platform
34769
34789
  \xA9 2025 Bonginkan Inc.
@@ -42451,7 +42471,28 @@ var init_cli = __esm({
42451
42471
  init_conversation_persistence();
42452
42472
  init_chat_context_fixed_service();
42453
42473
  init_ai_response_service();
42454
- packageJson2 = { version: "3.0.0" };
42474
+ packageJson2 = { version: "3.0.5" };
42475
+ try {
42476
+ const fs22 = require("fs");
42477
+ const path26 = require("path");
42478
+ const possiblePaths = [
42479
+ path26.resolve(__dirname, "../package.json"),
42480
+ path26.resolve(__dirname, "../../package.json"),
42481
+ path26.resolve(process.cwd(), "package.json"),
42482
+ "/opt/homebrew/lib/node_modules/@bonginkan/maria/package.json"
42483
+ ];
42484
+ for (const pkgPath of possiblePaths) {
42485
+ try {
42486
+ const data2 = JSON.parse(fs22.readFileSync(pkgPath, "utf8"));
42487
+ if (data2.version) {
42488
+ packageJson2 = { version: data2.version };
42489
+ break;
42490
+ }
42491
+ } catch {
42492
+ }
42493
+ }
42494
+ } catch {
42495
+ }
42455
42496
  sessionMemory = [];
42456
42497
  program = createCLI();
42457
42498
  program.parse(process.argv);
@@ -50440,8 +50481,8 @@ ${modeEmoji} ${modeNames[inputType] || "Interactive Mode"}
50440
50481
  // package.json
50441
50482
  var package_default = {
50442
50483
  name: "@bonginkan/maria",
50443
- version: "3.0.3",
50444
- description: "\u{1F680} MARIA v3.0.3 - Stable & Reliable. 50+ working commands with updated documentation. Enterprise-ready AI development platform.",
50484
+ version: "3.0.5",
50485
+ description: "\u{1F680} MARIA v3.0.5 - Dynamic version display fixed. 50+ working commands. Enterprise-ready AI development platform.",
50445
50486
  keywords: [
50446
50487
  "ai",
50447
50488
  "cli",
@@ -50693,7 +50734,7 @@ var package_default = {
50693
50734
  figures: "^6.1.0",
50694
50735
  "lint-staged": "^16.1.5",
50695
50736
  prettier: "^3.2.4",
50696
- "react-devtools-core": "^6.1.5",
50737
+ "react-devtools-core": "^4.28.5",
50697
50738
  "ts-node": "^10.9.2",
50698
50739
  tsup: "^8.0.1",
50699
50740
  typescript: "5.3.3",