{
  "name": "llmail",
  "version": "1.2.11",
  "description": "Inbox and issue managementfor LLMs",
  "type": "module",
  "main": "./dist/cjs/index.js",
  "module": "./dist/esm/index.js",
  "exports": {
    ".": {
      "import": "./dist/esm/index.js",
      "require": "./dist/cjs/index.js"
    },
    "./cli": {
      "import": "./dist/esm/bin/cli.js",
      "require": "./dist/cjs/bin/cli.cjs"
    }
  },
  "bin": {
    "llmail": "./dist/esm/bin/cli.js"
  },
  "types": "./dist/types/index.d.ts",
  "scripts": {
    "clean": "rm -rf dist/",
    "prebuild": "npm run clean",
    "build": "tsup --silent",
    "postbuild": "chmod +x ./dist/esm/bin/cli.js && chmod +x ./dist/cjs/bin/cli.cjs",
    "test": "npm run build && vitest run",
    "test:v2": "npm run build && vitest run test/integration/activity-rules.test.ts",
    "test:watch": "vitest watch",
    "test:mv": "TEST_GROUP=mv-only npm run test",
    "prepare": "npm run clean && npm run build"
  },
  "dependencies": {
    "@types/inquirer": "^9.0.7",
    "@types/uuid": "^10.0.0",
    "chalk": "^5.3.0",
    "fs-extra": "^11.2.0",
    "glob": "^10.3.10",
    "inquirer": "^12.3.2",
    "js-yaml": "^4.1.0",
    "nanoid": "^3.3.7",
    "uuid": "^11.0.5",
    "winston": "^3.11.0",
    "yargs": "^17.7.2"
  },
  "devDependencies": {
    "@babel/types": "^7.26.5",
    "@types/fs-extra": "^11.0.4",
    "@types/js-yaml": "^4.0.9",
    "@types/mock-fs": "^4.13.4",
    "@types/node": "^20.11.24",
    "@types/yargs": "^17.0.32",
    "@vitest/coverage-v8": "^1.3.1",
    "chai-as-promised": "^8.0.1",
    "commander": "^13.0.0",
    "execa": "^9.5.2",
    "llmail-test": "^1.1.0",
    "memfs": "^4.17.0",
    "mock-fs": "^5.4.1",
    "rimraf": "^5.0.5",
    "tmp-promise": "^3.0.3",
    "tsup": "^8.3.5",
    "typescript": "^5.3.3",
    "vite-tsconfig-paths": "^5.1.4",
    "vitest": "^1.6.0"
  },
  "files": [
    "dist",
    "templates"
  ]
}
