@foothill/agent-move 1.0.8 → 1.0.9

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,6 +1,6 @@
1
1
  {
2
2
  "name": "@foothill/agent-move",
3
- "version": "1.0.8",
3
+ "version": "1.0.9",
4
4
  "description": "Watch your AI coding agents come alive as pixel-art characters in a 2D world",
5
5
  "type": "module",
6
6
  "engines": {
@@ -39,6 +39,7 @@
39
39
  "@fastify/cors": "^10.0.2",
40
40
  "@fastify/static": "^8.1.0",
41
41
  "@fastify/websocket": "^11.0.2",
42
+ "better-sqlite3": "^12.6.2",
42
43
  "chokidar": "^3.6.0",
43
44
  "fastify": "^5.2.1"
44
45
  },
@@ -1,10 +1,6 @@
1
- import { createRequire } from 'module'; const require = createRequire(import.meta.url);
2
-
3
1
  // dist/config.js
4
- import { createRequire } from "module";
5
2
  import { homedir } from "os";
6
3
  import { join } from "path";
7
- var require2 = createRequire(import.meta.url);
8
4
  var config = {
9
5
  port: parseInt(process.env.AGENT_MOVE_PORT || "3333", 10),
10
6
  claudeHome: join(homedir(), ".claude"),
@@ -1,10 +1,6 @@
1
- import { createRequire } from 'module'; const require = createRequire(import.meta.url);
2
-
3
1
  // dist/hooks/hook-event-manager.js
4
- import { createRequire } from "module";
5
2
  import { EventEmitter } from "events";
6
3
  import { randomUUID } from "crypto";
7
- var require2 = createRequire(import.meta.url);
8
4
  var PERMISSION_TIMEOUT_MS = 5 * 60 * 1e3;
9
5
  var HookEventManager = class extends EventEmitter {
10
6
  stateManager;
@@ -1,11 +1,7 @@
1
- import { createRequire } from 'module'; const require = createRequire(import.meta.url);
2
-
3
1
  // dist/hooks/hook-installer.js
4
- import { createRequire } from "module";
5
2
  import { readFileSync, writeFileSync, mkdirSync, chmodSync, existsSync } from "fs";
6
3
  import { join } from "path";
7
4
  import { homedir, platform } from "os";
8
- var require2 = createRequire(import.meta.url);
9
5
  var ALL_HOOK_EVENTS = [
10
6
  "SessionStart",
11
7
  "SessionEnd",