@machine0/cli 1.0.99 → 1.0.102

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/package.json CHANGED
@@ -1,20 +1,25 @@
1
1
  {
2
2
  "name": "@machine0/cli",
3
- "version": "1.0.99",
3
+ "version": "1.0.102",
4
4
  "description": "Cloud VMs from the CLI.",
5
5
  "homepage": "https://machine0.io",
6
6
  "author": "Barnaby Malet <barnaby@machine0.io>",
7
7
  "type": "module",
8
+ "engines": {
9
+ "node": ">=20.12.0"
10
+ },
8
11
  "bin": {
9
- "machine0": "./dist/cli.js"
12
+ "machine0": "./bin/entry.cjs"
10
13
  },
11
14
  "files": [
12
- "dist"
15
+ "dist",
16
+ "bin/entry.cjs",
17
+ "bin/check-node-version.cjs"
13
18
  ],
14
19
  "scripts": {
15
20
  "cli:dev": "bun --hot bin/cli.ts",
16
21
  "cli": "bun bin/cli.ts",
17
- "build": "bun run clean && bun build --production --target=node bin/cli.ts --outdir dist",
22
+ "build": "bun run clean && bun build --production --target=node --format=cjs bin/cli.ts --outfile dist/cli.bundle.cjs",
18
23
  "clean": "rm -rf .turbo dist/*",
19
24
  "lint": "biome check .",
20
25
  "format": "biome format --write .",