@bonginkan/maria 2.1.8 → 2.1.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/COMMANDS.md +177 -0
- package/GETTING_STARTED.md +183 -0
- package/LICENSE +25 -1
- package/README.md +140 -432
- package/SETUP.md +236 -0
- package/bin/maria.d.ts +5 -0
- package/bin/maria.js +27446 -3307
- package/bin/maria.js.map +5 -1
- package/dist/cli.d.ts +2 -5
- package/dist/cli.js +42 -31096
- package/dist/cli.js.map +1 -1
- package/dist/index.d.ts +5 -1401
- package/dist/index.js +39 -124948
- package/dist/index.js.map +1 -1
- package/npm-shrinkwrap.json +8210 -0
- package/package.json +49 -29
- package/dist/bin/maria.d.ts +0 -2
- package/dist/bin/maria.js +0 -31757
- package/dist/bin/maria.js.map +0 -1
- package/dist/metafile-cjs.json +0 -1
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@bonginkan/maria",
|
|
3
|
-
"version": "2.1.
|
|
4
|
-
"description": "🤖 MARIA Platform v2.1.
|
|
3
|
+
"version": "2.1.9",
|
|
4
|
+
"description": "🤖 MARIA Platform v2.1.9 CLI Native Development Edition - Complete CLI-only Development Environment + Advanced File Operations + Parallel Execution + Safety Systems + Audit Logging + Microservices Architecture + 50+ New Commands",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"ai",
|
|
7
7
|
"cli",
|
|
@@ -49,7 +49,7 @@
|
|
|
49
49
|
"coderag",
|
|
50
50
|
"document-processing",
|
|
51
51
|
"arxiv-integration",
|
|
52
|
-
"multi-agent-system",
|
|
52
|
+
"multi-agent-system",
|
|
53
53
|
"mcp-protocol",
|
|
54
54
|
"semantic-analysis",
|
|
55
55
|
"auto-research",
|
|
@@ -67,7 +67,22 @@
|
|
|
67
67
|
"citation-analysis",
|
|
68
68
|
"content-extraction",
|
|
69
69
|
"ai-analysis",
|
|
70
|
-
"research-automation"
|
|
70
|
+
"research-automation",
|
|
71
|
+
"autonomous-agent",
|
|
72
|
+
"algorithm-education",
|
|
73
|
+
"sorting-algorithms",
|
|
74
|
+
"quicksort",
|
|
75
|
+
"visualization",
|
|
76
|
+
"performance-analysis",
|
|
77
|
+
"educational-platform",
|
|
78
|
+
"computer-science",
|
|
79
|
+
"benchmarking",
|
|
80
|
+
"memory-profiling",
|
|
81
|
+
"interactive-learning",
|
|
82
|
+
"professional-engineering",
|
|
83
|
+
"autonomous-coding",
|
|
84
|
+
"visual-progress",
|
|
85
|
+
"real-time-feedback"
|
|
71
86
|
],
|
|
72
87
|
"author": "Bonginkan Inc.",
|
|
73
88
|
"license": "SEE LICENSE IN LICENSE",
|
|
@@ -89,33 +104,15 @@
|
|
|
89
104
|
"dist",
|
|
90
105
|
"bin",
|
|
91
106
|
"README.md",
|
|
107
|
+
"SETUP.md",
|
|
108
|
+
"GETTING_STARTED.md",
|
|
109
|
+
"COMMANDS.md",
|
|
92
110
|
"LICENSE"
|
|
93
111
|
],
|
|
94
112
|
"type": "commonjs",
|
|
95
113
|
"engines": {
|
|
96
114
|
"node": ">=18.0.0"
|
|
97
115
|
},
|
|
98
|
-
"scripts": {
|
|
99
|
-
"build": "tsup",
|
|
100
|
-
"dev": "tsup --watch",
|
|
101
|
-
"clean": "rm -rf dist",
|
|
102
|
-
"prebuild": "pnpm run clean",
|
|
103
|
-
"postbuild": "chmod +x bin/maria",
|
|
104
|
-
"test": "vitest",
|
|
105
|
-
"test:coverage": "vitest --coverage",
|
|
106
|
-
"lint": "eslint src --ext .ts,.tsx",
|
|
107
|
-
"lint:fix": "eslint src --ext .ts,.tsx --fix",
|
|
108
|
-
"type-check": "tsc --noEmit",
|
|
109
|
-
"prepublishOnly": "echo 'Using prebuilt dist files'",
|
|
110
|
-
"release": "pnpm version patch && pnpm publish",
|
|
111
|
-
"pre-commit": "lint-staged",
|
|
112
|
-
"release:latest": "pnpm publish && npm dist-tag add @bonginkan/maria@$(npm pkg get version | tr -d '\"') latest",
|
|
113
|
-
"release:alpha": "pnpm publish --tag alpha",
|
|
114
|
-
"release:beta": "pnpm publish --tag beta",
|
|
115
|
-
"version:sync": "node scripts/sync-versions.js",
|
|
116
|
-
"version:auto": "npm version prerelease --preid=alpha --no-git-tag-version && npm run version:sync",
|
|
117
|
-
"version:dynamic": "node scripts/dynamic-version.js && npm run version:sync"
|
|
118
|
-
},
|
|
119
116
|
"dependencies": {
|
|
120
117
|
"@anthropic-ai/sdk": "^0.20.0",
|
|
121
118
|
"@google/generative-ai": "^0.1.0",
|
|
@@ -135,7 +132,7 @@
|
|
|
135
132
|
"file-type": "^21.0.0",
|
|
136
133
|
"fs-extra": "^11.2.0",
|
|
137
134
|
"fuse.js": "^7.1.0",
|
|
138
|
-
"glob": "^
|
|
135
|
+
"glob": "^10.3.10",
|
|
139
136
|
"gpt-3-encoder": "^1.1.4",
|
|
140
137
|
"groq-sdk": "^0.3.0",
|
|
141
138
|
"ink": "^4.4.1",
|
|
@@ -144,11 +141,12 @@
|
|
|
144
141
|
"ink-text-input": "^5.0.1",
|
|
145
142
|
"inquirer": "^12.0.0",
|
|
146
143
|
"jsonwebtoken": "^9.0.2",
|
|
144
|
+
"micromatch": "^4.0.5",
|
|
147
145
|
"natural": "^6.0.0",
|
|
148
146
|
"node-fetch": "^3.3.2",
|
|
149
147
|
"openai": "^4.28.0",
|
|
150
148
|
"ora": "^8.0.1",
|
|
151
|
-
"p-limit": "^
|
|
149
|
+
"p-limit": "^3.1.0",
|
|
152
150
|
"prompts": "^2.4.2",
|
|
153
151
|
"react": "^18.2.0",
|
|
154
152
|
"reflect-metadata": "^0.2.2",
|
|
@@ -157,12 +155,14 @@
|
|
|
157
155
|
"strip-ansi": "^7.1.0",
|
|
158
156
|
"tesseract.js": "^6.0.1",
|
|
159
157
|
"toml": "^3.0.0",
|
|
158
|
+
"typescript": "^5.3.3",
|
|
160
159
|
"uuid": "^9.0.1",
|
|
161
160
|
"winston": "^3.11.0",
|
|
162
161
|
"ws": "^8.16.0",
|
|
163
162
|
"zod": "^3.22.4"
|
|
164
163
|
},
|
|
165
164
|
"devDependencies": {
|
|
165
|
+
"@types/better-sqlite3": "^7.6.13",
|
|
166
166
|
"@types/cli-progress": "^3.11.5",
|
|
167
167
|
"@types/figlet": "^1.5.8",
|
|
168
168
|
"@types/fs-extra": "^11.0.4",
|
|
@@ -177,6 +177,7 @@
|
|
|
177
177
|
"@typescript-eslint/eslint-plugin": "^6.19.0",
|
|
178
178
|
"@typescript-eslint/parser": "^6.19.0",
|
|
179
179
|
"@vitest/coverage-v8": "^1.2.0",
|
|
180
|
+
"better-sqlite3": "^12.2.0",
|
|
180
181
|
"cli-highlight": "^2.1.11",
|
|
181
182
|
"eslint": "^8.56.0",
|
|
182
183
|
"eslint-config-prettier": "^9.1.0",
|
|
@@ -205,5 +206,24 @@
|
|
|
205
206
|
"prettier --write"
|
|
206
207
|
]
|
|
207
208
|
},
|
|
208
|
-
"
|
|
209
|
-
|
|
209
|
+
"scripts": {
|
|
210
|
+
"build": "tsup",
|
|
211
|
+
"dev": "tsup --watch",
|
|
212
|
+
"clean": "rm -rf dist",
|
|
213
|
+
"prebuild": "pnpm run clean",
|
|
214
|
+
"postbuild": "chmod +x bin/maria",
|
|
215
|
+
"test": "vitest",
|
|
216
|
+
"test:coverage": "vitest --coverage",
|
|
217
|
+
"lint": "eslint src --ext .ts,.tsx",
|
|
218
|
+
"lint:fix": "eslint src --ext .ts,.tsx --fix",
|
|
219
|
+
"type-check": "tsc --noEmit",
|
|
220
|
+
"release": "pnpm version patch && pnpm publish",
|
|
221
|
+
"pre-commit": "lint-staged",
|
|
222
|
+
"release:latest": "pnpm publish && npm dist-tag add @bonginkan/maria@$(npm pkg get version | tr -d '\"') latest",
|
|
223
|
+
"release:alpha": "pnpm publish --tag alpha",
|
|
224
|
+
"release:beta": "pnpm publish --tag beta",
|
|
225
|
+
"version:sync": "node scripts/sync-versions.js",
|
|
226
|
+
"version:auto": "npm version prerelease --preid=alpha --no-git-tag-version && npm run version:sync",
|
|
227
|
+
"version:dynamic": "node scripts/dynamic-version.js && npm run version:sync"
|
|
228
|
+
}
|
|
229
|
+
}
|
package/dist/bin/maria.d.ts
DELETED