@tingly-dev/tingly-box-darwin-x64 0.260903.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 +9 -0
- package/bin/tingly-box +0 -0
- package/package.json +24 -0
package/README.md
ADDED
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
# @tingly-dev/tingly-box-darwin-x64
|
|
2
|
+
|
|
3
|
+
The tingly-box binary for darwin-x64. This package is pulled in automatically
|
|
4
|
+
by the [`tingly-box`](https://www.npmjs.com/package/tingly-box) package as
|
|
5
|
+
an optional dependency; install that one instead:
|
|
6
|
+
|
|
7
|
+
```bash
|
|
8
|
+
npm install -g tingly-box
|
|
9
|
+
```
|
package/bin/tingly-box
ADDED
|
Binary file
|
package/package.json
ADDED
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@tingly-dev/tingly-box-darwin-x64",
|
|
3
|
+
"version": "0.260903.1",
|
|
4
|
+
"description": "tingly-box binary for darwin-x64. Installed automatically as an optional dependency of the tingly-box package; not meant to be installed directly.",
|
|
5
|
+
"homepage": "https://github.com/tingly-dev/tingly-box",
|
|
6
|
+
"repository": {
|
|
7
|
+
"type": "git",
|
|
8
|
+
"url": "git+https://github.com/tingly-dev/tingly-box.git"
|
|
9
|
+
},
|
|
10
|
+
"license": "MPL-2.0",
|
|
11
|
+
"author": "Tingly Dev",
|
|
12
|
+
"publishConfig": {
|
|
13
|
+
"access": "public"
|
|
14
|
+
},
|
|
15
|
+
"os": [
|
|
16
|
+
"darwin"
|
|
17
|
+
],
|
|
18
|
+
"cpu": [
|
|
19
|
+
"x64"
|
|
20
|
+
],
|
|
21
|
+
"files": [
|
|
22
|
+
"bin/"
|
|
23
|
+
]
|
|
24
|
+
}
|