@sohaha/zcc-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/bin/zcc +0 -0
- package/package.json +26 -0
package/bin/zcc
ADDED
|
Binary file
|
package/package.json
ADDED
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@sohaha/zcc-darwin-x64",
|
|
3
|
+
"version": "0.0.1",
|
|
4
|
+
"description": "zcc binary for darwin x64",
|
|
5
|
+
"os": [
|
|
6
|
+
"darwin"
|
|
7
|
+
],
|
|
8
|
+
"cpu": [
|
|
9
|
+
"x64"
|
|
10
|
+
],
|
|
11
|
+
"bin": {
|
|
12
|
+
"zcc": "bin/zcc"
|
|
13
|
+
},
|
|
14
|
+
"files": [
|
|
15
|
+
"bin/zcc"
|
|
16
|
+
],
|
|
17
|
+
"license": "AGPL-3.0-only",
|
|
18
|
+
"repository": {
|
|
19
|
+
"type": "git",
|
|
20
|
+
"url": "git+https://github.com/tiann/zcc.git",
|
|
21
|
+
"directory": "cli"
|
|
22
|
+
},
|
|
23
|
+
"publishConfig": {
|
|
24
|
+
"access": "public"
|
|
25
|
+
}
|
|
26
|
+
}
|