@bloxystudios/bloxycode 1.0.1 → 1.0.2
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 +15 -1
- package/package.json +14 -1
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# BloxyCode
|
|
2
2
|
|
|
3
|
-
[](https://www.npmjs.com/package/@bloxystudios/bloxycode)
|
|
4
4
|
[](https://www.bridgemind.ai/vibeathon)
|
|
5
5
|
[](LICENSE)
|
|
6
6
|
[](https://bun.sh/)
|
|
@@ -261,6 +261,20 @@ Contributions are welcome! Please see our contributing guidelines for more detai
|
|
|
261
261
|
|
|
262
262
|
MIT
|
|
263
263
|
|
|
264
|
+
## Changelog
|
|
265
|
+
|
|
266
|
+
### 1.0.2 - 2026-01-30
|
|
267
|
+
- **Fixed**: npm global installation failing to find platform-specific binary
|
|
268
|
+
- Added `optionalDependencies` to package.json for all platform packages (darwin, linux, windows)
|
|
269
|
+
- This allows npm to automatically install the correct binary for the user's platform
|
|
270
|
+
|
|
271
|
+
### 1.0.1 - Initial Release
|
|
272
|
+
- Initial release of BloxyCode with Bloxy autonomous task execution
|
|
273
|
+
- Multi-provider AI support (Claude, OpenAI, Gemini, and 15+ more)
|
|
274
|
+
- MCP (Model Context Protocol) compatibility
|
|
275
|
+
- TUI interface with SolidJS
|
|
276
|
+
- Session management and agent system
|
|
277
|
+
|
|
264
278
|
## Links
|
|
265
279
|
|
|
266
280
|
- [Documentation](https://docs.bloxycode.dev) (coming soon)
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "https://json.schemastore.org/package.json",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.2",
|
|
4
4
|
"name": "@bloxystudios/bloxycode",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "MIT",
|
|
@@ -13,6 +13,19 @@
|
|
|
13
13
|
"bugs": {
|
|
14
14
|
"url": "https://github.com/bloxystudios/bloxycode/issues"
|
|
15
15
|
},
|
|
16
|
+
"optionalDependencies": {
|
|
17
|
+
"bloxycode-darwin-arm64": "1.0.2",
|
|
18
|
+
"bloxycode-darwin-x64": "1.0.2",
|
|
19
|
+
"bloxycode-darwin-x64-baseline": "1.0.2",
|
|
20
|
+
"bloxycode-linux-arm64": "1.0.2",
|
|
21
|
+
"bloxycode-linux-x64": "1.0.2",
|
|
22
|
+
"bloxycode-linux-x64-baseline": "1.0.2",
|
|
23
|
+
"bloxycode-linux-arm64-musl": "1.0.2",
|
|
24
|
+
"bloxycode-linux-x64-musl": "1.0.2",
|
|
25
|
+
"bloxycode-linux-x64-baseline-musl": "1.0.2",
|
|
26
|
+
"bloxycode-windows-x64": "1.0.2",
|
|
27
|
+
"bloxycode-windows-x64-baseline": "1.0.2"
|
|
28
|
+
},
|
|
16
29
|
"resolutions": {
|
|
17
30
|
"zod": "4.1.8",
|
|
18
31
|
"quansync": "^1.0.0"
|