{ "name": "@elizaos/plugin-reminders", "version": "2.0.3-beta.7", "type": "module", "description": "Reminder delivery + escalation data layer for elizaOS agents: owns the app_reminders schema (reminder plans, per-channel delivery attempts, escalation states) carved out of @elizaos/plugin-personal-assistant, with a non-destructive migration from app_lifeops. The delivery/escalation engine is host-wired during the decomposition.", "main": "./dist/index.js", "scripts": { "typecheck": "tsgo --noEmit -p tsconfig.json", "lint": "bunx @biomejs/biome check --write --unsafe .", "test": "bunx vitest run --config ./vitest.config.ts", "build": "bun run build:js && bun run build:types", "clean": "node ../../packages/scripts/rm-path-recursive.mjs dist", "build:js": "tsup --config ../tsup.plugin-packages.shared.ts", "build:types": "bunx tsc --noCheck -p tsconfig.build.json && node ../../packages/scripts/rewrite-dist-relative-imports-node-esm.mjs", "lint:check": "bunx @biomejs/biome check .", "format": "bunx @biomejs/biome format --write .", "format:check": "bunx @biomejs/biome format ." }, "exports": { "./package.json": "./package.json", ".": { "types": "./dist/index.d.ts", "eliza-source": { "types": "./src/index.ts", "import": "./src/index.ts", "default": "./src/index.ts" }, "import": "./dist/index.js", "default": "./dist/index.js" }, "./plugin": { "types": "./dist/plugin.d.ts", "eliza-source": { "types": "./src/plugin.ts", "import": "./src/plugin.ts", "default": "./src/plugin.ts" }, "import": "./dist/plugin.js", "default": "./dist/plugin.js" }, "./*": { "types": "./dist/*.d.ts", "eliza-source": { "types": "./src/*.ts", "import": "./src/*.ts", "default": "./src/*.ts" }, "import": "./dist/*.js", "default": "./dist/*.js" } }, "dependencies": { "@elizaos/agent": "workspace:*", "@elizaos/core": "workspace:*", "@elizaos/plugin-scheduling": "workspace:*", "@elizaos/shared": "workspace:*", "drizzle-orm": "^0.45.1" }, "peerDependencies": { "@elizaos/plugin-sql": "workspace:*" }, "publishConfig": { "access": "public" }, "types": "./dist/index.d.ts", "files": [ "dist" ], "devDependencies": { "@biomejs/biome": "2.5.3", "@types/node": "^25.0.6", "tsup": "^8.5.1", "typescript": "^6.0.3", "vitest": "^4.0.17" } }