{
  "name": "townkrier-core",
  "version": "1.0.1-alpha.3",
  "description": "Laravel-style notification system for Node.js with multiple channels and providers",
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "exports": {
    ".": {
      "import": "./dist/index.js",
      "require": "./dist/index.js",
      "types": "./dist/index.d.ts"
    }
  },
  "files": [
    "dist",
    "README.md",
    "LICENSE"
  ],
  "repository": {
    "type": "git",
    "url": "https://github.com/jeremiah-olisa/townkrier.git",
    "directory": "packages/core"
  },
  "homepage": "https://github.com/jeremiah-olisa/townkrier?tab=readme-ov-file#readme",
  "bugs": {
    "url": "https://github.com/jeremiah-olisa/townkrier/issues"
  },
  "engines": {
    "node": ">=16.0.0"
  },
  "keywords": [
    "notifications",
    "laravel-notifications",
    "email",
    "sms",
    "push-notifications",
    "in-app-notifications",
    "townkrier",
    "multi-channel"
  ],
  "author": "Jeremiah Olisa",
  "license": "MIT",
  "publishConfig": {
    "access": "public"
  },
  "devDependencies": {
    "@types/jest": "^30.0.0",
    "@types/mocha": "^10.0.10",
    "@types/node": "^24.9.1",
    "jest": "^30.2.0",
    "ts-jest": "^29.4.5",
    "typescript": "^5.9.3"
  },
  "scripts": {
    "build": "tsc",
    "watch": "tsc --watch",
    "test": "jest",
    "test:watch": "jest --watch",
    "test:cov": "jest --coverage",
    "lint": "eslint \"src/**/*.ts\" --fix",
    "clean": "rm -rf dist",
    "prebuild": "npm run clean"
  }
}