handsoff 0.1.0 → 0.1.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.
Files changed (1) hide show
  1. package/package.json +3 -2
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "handsoff",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "description": "Hands off your desk, hand off control to your phone. Monitor and control AI coding assistants from anywhere.",
5
5
  "type": "module",
6
6
  "main": "dist/cli/index.js",
@@ -71,7 +71,7 @@
71
71
  "vitest": "^1.2.0"
72
72
  },
73
73
  "engines": {
74
- "node": ">=20.0.0"
74
+ "node": ">=20.18.0"
75
75
  },
76
76
  "scripts": {
77
77
  "build": "tsup && chmod +x dist/cli/index.js",
@@ -79,6 +79,7 @@
79
79
  "test": "vitest",
80
80
  "lint": "eslint src --ext .ts",
81
81
  "typecheck": "tsc --noEmit",
82
+ "release:patch": "pnpm version patch && pnpm publish",
82
83
  "release:beta": "pnpm version prerelease --preid=beta && pnpm publish --tag beta",
83
84
  "release": "pnpm version minor && pnpm publish"
84
85
  }