@clanker-code/c2c-darwin-arm64 0.8.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.
Files changed (2) hide show
  1. package/bin/c2c +3 -0
  2. package/package.json +22 -0
package/bin/c2c ADDED
@@ -0,0 +1,3 @@
1
+ #!/bin/sh
2
+ echo "c2c c2c-darwin-arm64 placeholder package: use @clanker-code/c2c on a supported release artifact" >&2
3
+ exit 1
package/package.json ADDED
@@ -0,0 +1,22 @@
1
+ {
2
+ "name": "@clanker-code/c2c-darwin-arm64",
3
+ "version": "0.8.0",
4
+ "description": "c2c CLI binary for darwin-arm64",
5
+ "license": "MIT",
6
+ "repository": {
7
+ "type": "git",
8
+ "url": "git+https://github.com/clankercode/c2c.git"
9
+ },
10
+ "os": [
11
+ "darwin"
12
+ ],
13
+ "cpu": [
14
+ "arm64"
15
+ ],
16
+ "files": [
17
+ "bin/"
18
+ ],
19
+ "bin": {
20
+ "c2c": "bin/c2c"
21
+ }
22
+ }