@mandors/cli 0.4.3 → 0.4.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.
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mandors/cli",
3
- "version": "0.4.3",
3
+ "version": "0.4.4",
4
4
  "description": "Event-based task manager CLI for AI agent workflows",
5
5
  "main": "npm/lib/index.js",
6
6
  "bin": {
@@ -21,12 +21,12 @@
21
21
  "scripts": {
22
22
  "postinstall": "node npm/lib/install.js",
23
23
  "build": "node npm/scripts/build.js",
24
- "build:darwin:x64": "GOOS=darwin GOARCH=x64 go build -o binaries/darwin-x64/mandor ./cmd/mandor",
24
+ "build:darwin:x64": "GOOS=darwin GOARCH=amd64 go build -o binaries/darwin-amd64/mandor ./cmd/mandor",
25
25
  "build:darwin:arm64": "GOOS=darwin GOARCH=arm64 go build -o binaries/darwin-arm64/mandor ./cmd/mandor",
26
- "build:linux:x64": "GOOS=linux GOARCH=x64 go build -o binaries/linux-x64/mandor ./cmd/mandor",
26
+ "build:linux:x64": "GOOS=linux GOARCH=amd64 go build -o binaries/linux-amd64/mandor ./cmd/mandor",
27
27
  "build:linux:arm64": "GOOS=linux GOARCH=arm64 go build -o binaries/linux-arm64/mandor ./cmd/mandor",
28
- "build:win32:x64": "GOOS=win32 GOARCH=x64 go build -o binaries/win32-x64/mandor.exe ./cmd/mandor",
29
- "build:win32:arm64": "GOOS=win32 GOARCH=arm64 go build -o binaries/win32-arm64/mandor.exe ./cmd/mandor",
28
+ "build:win32:x64": "GOOS=windows GOARCH=amd64 go build -o binaries/windows-amd64/mandor.exe ./cmd/mandor",
29
+ "build:win32:arm64": "GOOS=windows GOARCH=arm64 go build -o binaries/windows-arm64/mandor.exe ./cmd/mandor",
30
30
  "version:major": "npm version major && git push --follow-tags",
31
31
  "version:minor": "npm version minor && git push --follow-tags",
32
32
  "version:patch": "npm version patch && git push --follow-tags",