@machine0/cli 1.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 +238 -0
  2. package/dist/cli.js +508 -0
  3. package/package.json +47 -0
package/package.json ADDED
@@ -0,0 +1,47 @@
1
+ {
2
+ "name": "@machine0/cli",
3
+ "version": "1.0.0",
4
+ "description": "Instant, AI-ready cloud VMs from your terminal.",
5
+ "homepage": "https://machine0.io",
6
+ "author": "Barnaby Malet <barnaby@machine0.io>",
7
+ "type": "module",
8
+ "bin": {
9
+ "machine0": "./dist/cli.js"
10
+ },
11
+ "files": [
12
+ "dist"
13
+ ],
14
+ "scripts": {
15
+ "cli:dev": "bun --hot bin/cli.ts",
16
+ "cli": "bun bin/cli.ts",
17
+ "build": "bun run clean && bun build --production --target=node bin/cli.ts --outdir dist",
18
+ "clean": "rm -rf .turbo dist/*",
19
+ "lint": "biome check .",
20
+ "format": "biome format --write .",
21
+ "typecheck": "tsc --noEmit",
22
+ "test": "bun test",
23
+ "prepublishOnly": "bun run build"
24
+ },
25
+ "devDependencies": {
26
+ "@biomejs/biome": "^2.3.4",
27
+ "@trpc/client": "^11.7.1",
28
+ "@types/bun": "latest",
29
+ "cli-table3": "^0.6.5",
30
+ "open": "^11.0.0",
31
+ "playwright": "^1.50.0",
32
+ "ssh-keygen-lite": "^1.3.0",
33
+ "typescript": "^5",
34
+ "zx": "^8.8.5",
35
+ "@machine0/utilities": "workspace:*",
36
+ "@machine0/api": "workspace:*",
37
+ "@inquirer/prompts": "^8.2.0",
38
+ "@t3-oss/env-core": "^0.13.8",
39
+ "chalk": "^5.4.1",
40
+ "commander": "^13.1.0",
41
+ "ora": "^9.0.0",
42
+ "zod": "^4.1.12",
43
+ "dotenv": "^17.3.1",
44
+ "@types/lodash": "^4.17.23",
45
+ "lodash": "^4.17.23"
46
+ }
47
+ }