@factory/cli-darwin-x64 0.0.1
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 +19 -0
- package/bin/droid +2 -0
- package/package.json +24 -0
package/README.md
ADDED
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
# @factory/cli-darwin-x64
|
|
2
|
+
|
|
3
|
+
Platform-specific binary for [@factory/cli](https://www.npmjs.com/package/@factory/cli).
|
|
4
|
+
|
|
5
|
+
**Platform:** darwin
|
|
6
|
+
**Architecture:** x64
|
|
7
|
+
|
|
8
|
+
This package is installed automatically as an optional dependency of @factory/cli.
|
|
9
|
+
You should not need to install it directly.
|
|
10
|
+
|
|
11
|
+
## Installation
|
|
12
|
+
|
|
13
|
+
```bash
|
|
14
|
+
npm install -g @factory/cli
|
|
15
|
+
```
|
|
16
|
+
|
|
17
|
+
## License
|
|
18
|
+
|
|
19
|
+
UNLICENSED
|
package/bin/droid
ADDED
package/package.json
ADDED
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@factory/cli-darwin-x64",
|
|
3
|
+
"version": "0.0.1",
|
|
4
|
+
"description": "Platform-specific binary for @factory/cli (darwin x64)",
|
|
5
|
+
"os": [
|
|
6
|
+
"darwin"
|
|
7
|
+
],
|
|
8
|
+
"cpu": [
|
|
9
|
+
"x64"
|
|
10
|
+
],
|
|
11
|
+
"main": "bin/droid",
|
|
12
|
+
"files": [
|
|
13
|
+
"bin/"
|
|
14
|
+
],
|
|
15
|
+
"license": "UNLICENSED",
|
|
16
|
+
"repository": {
|
|
17
|
+
"type": "git",
|
|
18
|
+
"url": "git+https://github.com/Factory-AI/factory.git",
|
|
19
|
+
"directory": "apps/cli"
|
|
20
|
+
},
|
|
21
|
+
"publishConfig": {
|
|
22
|
+
"access": "public"
|
|
23
|
+
}
|
|
24
|
+
}
|