@miaws/miaw 1.18.0 → 1.18.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.
@@ -1,7 +1,7 @@
1
1
  
2
2
  {
3
3
  "name": "@miaws/miaw",
4
- "version": "1.18.1",
4
+ "version": "1.18.2",
5
5
  "description": "MIAW-CLI — Open source agentic terminal",
6
6
  "license": "MIT",
7
7
  "bin": {
package/miaw.cmd ADDED
@@ -0,0 +1,10 @@
1
+
2
+ @ECHO off
3
+ GOTO start
4
+ :find_dp0
5
+ SET dp0=%~dp0
6
+ EXIT /b
7
+ :start
8
+ SETLOCAL
9
+ CALL :find_dp0
10
+ node "%dp0%\miaw.js" %*
File without changes
package/package.json CHANGED
@@ -1,10 +1,12 @@
1
1
  
2
2
  {
3
3
  "name": "@miaws/miaw",
4
- "version": "1.18.0",
4
+ "version": "1.18.2",
5
5
  "description": "MIAW-CLI — Open source agentic terminal",
6
6
  "license": "MIT",
7
- "bin": "miaw",
7
+ "bin": {
8
+ "miaw": "./miaw.cmd"
9
+ },
8
10
  "optionalDependencies": {
9
11
  "@miaws/miaw-windows-x64": "1.17.6"
10
12
  }