@within-7/minto-darwin-arm64 0.2.0
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 +20 -0
- package/minto +0 -0
- package/package.json +23 -0
package/README.md
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
# @within-7/minto-darwin-arm64
|
|
2
|
+
|
|
3
|
+
This package contains the Minto binary for darwin-arm64.
|
|
4
|
+
|
|
5
|
+
**This is an internal package.** Install the main package instead:
|
|
6
|
+
|
|
7
|
+
```bash
|
|
8
|
+
npm install -g @within-7/minto
|
|
9
|
+
```
|
|
10
|
+
|
|
11
|
+
The main package will automatically install the correct binary for your platform.
|
|
12
|
+
|
|
13
|
+
## Platform Support
|
|
14
|
+
|
|
15
|
+
- OS: darwin
|
|
16
|
+
- CPU: arm64
|
|
17
|
+
|
|
18
|
+
## Documentation
|
|
19
|
+
|
|
20
|
+
See the main package: https://github.com/within-7/minto
|
package/minto
ADDED
|
Binary file
|
package/package.json
ADDED
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@within-7/minto-darwin-arm64",
|
|
3
|
+
"version": "0.2.0",
|
|
4
|
+
"description": "Minto binary for darwin-arm64",
|
|
5
|
+
"repository": {
|
|
6
|
+
"type": "git",
|
|
7
|
+
"url": "https://github.com/within-7/minto.git"
|
|
8
|
+
},
|
|
9
|
+
"license": "Apache-2.0",
|
|
10
|
+
"preferUnplugged": true,
|
|
11
|
+
"os": [
|
|
12
|
+
"darwin"
|
|
13
|
+
],
|
|
14
|
+
"cpu": [
|
|
15
|
+
"arm64"
|
|
16
|
+
],
|
|
17
|
+
"bin": {
|
|
18
|
+
"minto-darwin-arm64": "minto"
|
|
19
|
+
},
|
|
20
|
+
"files": [
|
|
21
|
+
"minto"
|
|
22
|
+
]
|
|
23
|
+
}
|