@bonginkan/maria 3.0.3 → 3.0.4
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 +1 -1
- package/dist/bin/maria.cjs +27 -7
- package/dist/bin/maria.cjs.map +1 -1
- package/dist/cli.cjs +24 -4
- package/dist/cli.cjs.map +1 -1
- package/package.json +3 -3
package/README.md
CHANGED
package/dist/bin/maria.cjs
CHANGED
|
@@ -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
|
|
34753
|
-
|
|
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.3";
|
|
34754
34774
|
return {
|
|
34755
34775
|
success: true,
|
|
34756
|
-
message: `MARIA CODE CLI v${
|
|
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
|
|
34786
|
+
message: `MARIA CODE CLI v3.0.3
|
|
34767
34787
|
|
|
34768
34788
|
AI-Powered Development Platform
|
|
34769
34789
|
\xA9 2025 Bonginkan Inc.
|
|
@@ -50440,8 +50460,8 @@ ${modeEmoji} ${modeNames[inputType] || "Interactive Mode"}
|
|
|
50440
50460
|
// package.json
|
|
50441
50461
|
var package_default = {
|
|
50442
50462
|
name: "@bonginkan/maria",
|
|
50443
|
-
version: "3.0.
|
|
50444
|
-
description: "\u{1F680} MARIA v3.0.
|
|
50463
|
+
version: "3.0.4",
|
|
50464
|
+
description: "\u{1F680} MARIA v3.0.4 - Dynamic version display. 50+ working commands with updated documentation. Enterprise-ready AI development platform.",
|
|
50445
50465
|
keywords: [
|
|
50446
50466
|
"ai",
|
|
50447
50467
|
"cli",
|
|
@@ -50693,7 +50713,7 @@ var package_default = {
|
|
|
50693
50713
|
figures: "^6.1.0",
|
|
50694
50714
|
"lint-staged": "^16.1.5",
|
|
50695
50715
|
prettier: "^3.2.4",
|
|
50696
|
-
"react-devtools-core": "^
|
|
50716
|
+
"react-devtools-core": "^4.28.5",
|
|
50697
50717
|
"ts-node": "^10.9.2",
|
|
50698
50718
|
tsup: "^8.0.1",
|
|
50699
50719
|
typescript: "5.3.3",
|