{
  "name": "@winglet/data-loader",
  "version": "0.14.1",
  "description": "Batching and caching utility for asynchronous data fetching inspired by GraphQL DataLoader, providing efficient request batching and built-in cache system with TypeScript support",
  "keywords": [
    "typescript",
    "dataloader",
    "batching",
    "caching",
    "async",
    "data-fetching",
    "performance",
    "optimization",
    "batch-loading",
    "cache-system",
    "promise",
    "utilities",
    "n+1-problem"
  ],
  "repository": {
    "type": "git",
    "url": "https://github.com/vincent-kk/albatrion.git",
    "directory": "packages/winglet/data-loader"
  },
  "license": "MIT",
  "author": {
    "name": "Vincent K. Kelvin",
    "email": "lunox273@gmail.com"
  },
  "sideEffects": false,
  "type": "module",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "source": "./src/index.ts",
      "import": "./dist/index.mjs",
      "require": "./dist/index.cjs"
    }
  },
  "main": "dist/index.cjs",
  "module": "dist/index.mjs",
  "types": "dist/index.d.ts",
  "files": [
    "dist",
    "docs",
    "README.md"
  ],
  "scripts": {
    "build": "rolldown -c && yarn build:types && yarn build:hashes && yarn typecheck",
    "build:hashes": "agents-build-hashes",
    "build:publish:npm": "yarn build && yarn publish:npm",
    "build:types": "node ../../aileron/script/build/buildTypes.mjs",
    "format": "prettier --write \"src/**/*.ts\"",
    "lint": "eslint \"src/**/*.{ts,tsx}\"",
    "prepublishOnly": "yarn build",
    "publish:npm": "yarn npm publish --access public",
    "test": "yarn run -T vitest",
    "typecheck": "tsc --noEmit --composite false --rootDir . -p tsconfig.json",
    "version:major": "yarn version major",
    "version:minor": "yarn version minor",
    "version:patch": "yarn version patch"
  },
  "dependencies": {
    "@winglet/common-utils": "^0.14.2"
  },
  "devDependencies": {
    "@slats/agents-assets-sync": "^0.3.0",
    "eslint": "8.57.1",
    "rolldown": "^1.2.0",
    "tsc-alias": "^1.8.16",
    "typescript": "^5.7.2"
  },
  "agents": {
    "assetPath": "docs/agents"
  }
}