{
  "name": "@lytics/sdk-kit",
  "version": "0.2.0",
  "description": "Core SDK framework with functional plugin architecture",
  "type": "module",
  "main": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.js"
    }
  },
  "files": [
    "dist",
    "src",
    "README.md",
    "LICENSE"
  ],
  "sideEffects": false,
  "keywords": [
    "sdk",
    "typescript",
    "plugin",
    "framework",
    "plugin-architecture",
    "event-emitter",
    "tree-shakeable",
    "zero-dependencies",
    "functional-programming"
  ],
  "repository": {
    "type": "git",
    "url": "https://github.com/lytics/sdk-kit.git",
    "directory": "packages/core"
  },
  "homepage": "https://github.com/lytics/sdk-kit#readme",
  "bugs": {
    "url": "https://github.com/lytics/sdk-kit/issues"
  },
  "author": "Lytics",
  "license": "MIT",
  "publishConfig": {
    "access": "public",
    "registry": "https://registry.npmjs.org/"
  },
  "devDependencies": {
    "tsup": "^8.5.1",
    "typescript": "^5.9.3"
  },
  "peerDependencies": {
    "typescript": ">=5.0.0"
  },
  "peerDependenciesMeta": {
    "typescript": {
      "optional": true
    }
  },
  "scripts": {
    "build": "tsup",
    "dev": "tsup --watch",
    "clean": "rm -rf dist",
    "typecheck": "tsc --noEmit",
    "lint": "biome lint ./src",
    "format": "biome format --write ./src",
    "test": "vitest run",
    "test:watch": "vitest"
  }
}