lazy-gravity 0.7.1 → 0.7.2

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.
@@ -36,7 +36,7 @@ function acquireLock() {
36
36
  if (typeof process.getuid === 'function' && dirStat.uid !== process.getuid()) {
37
37
  throw new Error(`Lock directory is not owned by current user: ${LOCK_DIR}`);
38
38
  }
39
- if ((dirStat.mode & 0o077) !== 0) {
39
+ if (process.platform !== 'win32' && (dirStat.mode & 0o077) !== 0) {
40
40
  throw new Error(`Lock directory has overly permissive permissions: ${LOCK_DIR}`);
41
41
  }
42
42
  // Check existing lock file
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "lazy-gravity",
3
- "version": "0.7.1",
3
+ "version": "0.7.2",
4
4
  "description": "Control Antigravity from anywhere — a local, secure bot (Discord + Telegram) that lets you remotely operate Antigravity on your home PC from your smartphone.",
5
5
  "main": "dist/index.js",
6
6
  "bin": {
@@ -70,9 +70,9 @@
70
70
  "minimatch": "^10.2.1",
71
71
  "semantic-release": "^25.0.3",
72
72
  "ts-jest": "^29.4.6",
73
- "ts-morph": "^27.0.2",
73
+ "ts-morph": "^28.0.0",
74
74
  "ts-node": "^10.9.2",
75
75
  "typescript": "^5.9.3",
76
- "undici": "^7.22.0"
76
+ "undici": "^8.0.3"
77
77
  }
78
78
  }