ai-ops-studio-darwin-arm64 1.5.5
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 +11 -0
- package/bin/.gitkeep +1 -0
- package/bin/ai-ops-studio +0 -0
- package/package.json +25 -0
package/README.md
ADDED
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
# ai-ops Studio macOS arm64
|
|
2
|
+
|
|
3
|
+
This package contains the macOS arm64 native binary used by `ai-ops-cli` to launch ai-ops Studio.
|
|
4
|
+
|
|
5
|
+
Install `ai-ops-cli` globally and run Studio from a project root:
|
|
6
|
+
|
|
7
|
+
```bash
|
|
8
|
+
ai-ops studio .
|
|
9
|
+
```
|
|
10
|
+
|
|
11
|
+
This package is installed as an optional platform dependency. It is not intended to be used directly.
|
package/bin/.gitkeep
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
Binary file
|
package/package.json
ADDED
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "ai-ops-studio-darwin-arm64",
|
|
3
|
+
"version": "1.5.5",
|
|
4
|
+
"description": "macOS arm64 desktop binary for ai-ops Studio",
|
|
5
|
+
"license": "MIT",
|
|
6
|
+
"repository": {
|
|
7
|
+
"type": "git",
|
|
8
|
+
"url": "https://github.com/MincheolC/ai-ops-cli.git",
|
|
9
|
+
"directory": "apps/studio-darwin-arm64"
|
|
10
|
+
},
|
|
11
|
+
"type": "module",
|
|
12
|
+
"os": [
|
|
13
|
+
"darwin"
|
|
14
|
+
],
|
|
15
|
+
"cpu": [
|
|
16
|
+
"arm64"
|
|
17
|
+
],
|
|
18
|
+
"files": [
|
|
19
|
+
"bin",
|
|
20
|
+
"README.md"
|
|
21
|
+
],
|
|
22
|
+
"bin": {
|
|
23
|
+
"ai-ops-studio": "./bin/ai-ops-studio"
|
|
24
|
+
}
|
|
25
|
+
}
|