@ox.build/cli 0.0.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 (3) hide show
  1. package/README.md +3 -0
  2. package/bin/ox +3 -0
  3. package/package.json +22 -0
package/README.md ADDED
@@ -0,0 +1,3 @@
1
+ # @ox.build/cli
2
+
3
+ Placeholder package. See https://github.com/timescale/ox
package/bin/ox ADDED
@@ -0,0 +1,3 @@
1
+ #!/usr/bin/env node
2
+ console.error("ox v0.0.0 — this is a placeholder. Install a newer version: npm install -g @ox.build/cli");
3
+ process.exitCode = 1;
package/package.json ADDED
@@ -0,0 +1,22 @@
1
+ {
2
+ "name": "@ox.build/cli",
3
+ "version": "0.0.0",
4
+ "description": "The ox CLI for managing development environments",
5
+ "license": "Apache-2.0",
6
+ "repository": {
7
+ "type": "git",
8
+ "url": "git+https://github.com/timescale/ox.git"
9
+ },
10
+ "files": [
11
+ "README.md",
12
+ "bin"
13
+ ],
14
+ "bin": {
15
+ "ox": "bin/ox"
16
+ },
17
+ "optionalDependencies": {
18
+ "@ox.build/cli-linux-x64": "0.0.0",
19
+ "@ox.build/cli-linux-arm64": "0.0.0",
20
+ "@ox.build/cli-darwin-arm64": "0.0.0"
21
+ }
22
+ }