@bonginkan/maria 3.0.6 → 3.0.9

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/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@bonginkan/maria",
3
- "version": "3.0.6",
4
- "description": "🚀 MARIA v3.0.6 - All version displays now dynamic. 50+ working commands. Enterprise-ready AI development platform.",
3
+ "version": "3.0.9",
4
+ "description": "🚀 MARIA v3.0.9 - Minimal API, Maximum Power. Intelligent Router + Dual Memory + File System. Enterprise-ready AI development platform with enhanced /help command and stability improvements.",
5
5
  "keywords": [
6
6
  "ai",
7
7
  "cli",
@@ -101,8 +101,26 @@
101
101
  "types": "./dist/index.d.ts",
102
102
  "default": "./dist/index.js"
103
103
  },
104
+ "./services/internal-mode": {
105
+ "types": "./dist/services/internal-mode/index.d.ts",
106
+ "default": "./dist/services/internal-mode/index.js"
107
+ },
108
+ "./services/internal-mode-v2": {
109
+ "types": "./dist/services/internal-mode-v2/index.d.ts",
110
+ "default": "./dist/services/internal-mode-v2/index.js"
111
+ },
104
112
  "./package.json": "./package.json"
105
113
  },
114
+ "typesVersions": {
115
+ "*": {
116
+ "services/internal-mode": [
117
+ "dist/services/internal-mode/index.d.ts"
118
+ ],
119
+ "services/internal-mode-v2": [
120
+ "dist/services/internal-mode-v2/index.d.ts"
121
+ ]
122
+ }
123
+ },
106
124
  "bin": {
107
125
  "maria": "dist/cli.cjs",
108
126
  "mc": "dist/cli.cjs"
@@ -125,7 +143,7 @@
125
143
  "clean": "rm -rf dist",
126
144
  "gen:cmd-types": "node --experimental-specifier-resolution=node scripts/gen/command-types.mts",
127
145
  "prebuild": "pnpm run clean && pnpm gen:cmd-types",
128
- "postbuild": "chmod +x dist/cli.cjs dist/bin/maria.js 2>/dev/null || true",
146
+ "postbuild": "chmod +x dist/cli.cjs dist/bin/maria.cjs 2>/dev/null || true",
129
147
  "test": "vitest",
130
148
  "test:coverage": "vitest --coverage",
131
149
  "test:smoke": "vitest run src/__tests__/smoke.test.ts",
@@ -136,6 +154,26 @@
136
154
  "lint": "eslint src --ext .ts,.tsx",
137
155
  "lint:fix": "eslint src --ext .ts,.tsx --fix",
138
156
  "type-check": "tsc --noEmit",
157
+ "fix:underscores": "tsx scripts/fix/underscore-mismatch.ts",
158
+ "fix:args": "tsx scripts/fix/arg-prefix-normalize.ts",
159
+ "codemod:internal-mode": "node scripts/codemod/replace-internal-mode.mjs",
160
+ "codemod:edm-migration": "node scripts/codemod/edm-migration.mjs",
161
+ "migration:status": "node scripts/migration-status.mjs",
162
+ "phase3:readiness": "node scripts/phase3-readiness-check.mjs",
163
+ "deps:check": "npx dependency-cruiser src --config .dependency-cruiser.cjs",
164
+ "deps:graph": "npx dependency-cruiser src --include-only '^src' --config .dependency-cruiser.js --output-type dot | dot -T svg > dependency-graph.svg",
165
+ "deps:monitor": "node scripts/qc/circular-dependency-monitor.mjs check",
166
+ "deps:status": "node scripts/qc/circular-dependency-monitor.mjs status",
167
+ "deps:report": "node scripts/qc/circular-dependency-monitor.mjs report",
168
+ "perf:monitor": "node scripts/perf/continuous-monitor.mjs",
169
+ "perf:baseline": "node scripts/bundle-performance-monitor.mjs",
170
+ "test:safety-net": "vitest run tests/*safety*.test.ts tests/deprecation*.test.ts tests/phase3*.test.ts",
171
+ "test:phase3": "vitest run tests/phase3-safety.test.ts",
172
+ "metrics:deprecation": "node -e \"console.log('Deprecation metrics would be shown here')\"",
173
+ "lint:edm": "eslint src/services/memory-system/phase4 --config .eslintrc.edm-migration.js",
174
+ "fix:args:anon": "tsx scripts/fix/arg-anonymize-unused.ts",
175
+ "fix:all": "pnpm -s fix:underscores && pnpm -s fix:args && pnpm -s fix:args:anon",
176
+ "fix:quick": "pnpm -s fix:underscores && pnpm -s build && pnpm -s test:smoke",
139
177
  "prepublishOnly": "pnpm -s build && node scripts/qc/assert-registry.mjs",
140
178
  "snapshot:help": "node scripts/qc/help-snapshot.js",
141
179
  "snapshot:update": "UPDATE_SNAPSHOTS=true node scripts/qc/help-snapshot.js",
@@ -164,7 +202,6 @@
164
202
  "gate:43": "pnpm bench:43:ai && node scripts/bench/gate.mjs 4.3",
165
203
  "bench:44:dx": "vitest run tests/command-intelligence/*.spec.ts --reporter=json",
166
204
  "gate:44": "pnpm bench:44:dx && node scripts/bench/gate.mjs 4.4",
167
- "perf:monitor": "node scripts/perf/continuous-monitor.mjs",
168
205
  "perf:report": "node scripts/perf/generate-report.mjs",
169
206
  "gate:phase4:all": "pnpm gate:41 && pnpm gate:42 && pnpm gate:43 && pnpm gate:44",
170
207
  "lint:json": "eslint -f json -o lint-errors.json .",
@@ -190,7 +227,6 @@
190
227
  "dotenv": "^16.4.1",
191
228
  "express-rate-limit": "^8.0.1",
192
229
  "express-validator": "^7.2.1",
193
- "fast-glob": "^3.3.3",
194
230
  "figlet": "^1.7.0",
195
231
  "file-type": "^21.0.0",
196
232
  "fs-extra": "^11.2.0",
@@ -250,12 +286,16 @@
250
286
  "eslint-plugin-node": "^11.1.0",
251
287
  "eslint-plugin-prettier": "^5.1.3",
252
288
  "execa": "^9.6.0",
289
+ "fast-glob": "^3.3.3",
253
290
  "figures": "^6.1.0",
291
+ "jscodeshift": "^17.3.0",
254
292
  "lint-staged": "^16.1.5",
255
293
  "prettier": "^3.2.4",
256
- "react-devtools-core": "^4.28.5",
294
+ "react-devtools-core": "^6.1.5",
295
+ "ts-morph": "^26.0.0",
257
296
  "ts-node": "^10.9.2",
258
297
  "tsup": "^8.0.1",
298
+ "tsx": "^4.20.3",
259
299
  "typescript": "5.3.3",
260
300
  "vitest": "^1.2.0"
261
301
  },