{
  "name": "cachio",
  "type": "module",
  "version": "0.0.3",
  "description": "A lightweight JSON-based caching utility with CLI and API support for Node.js",
  "types": "./dist/index.d.ts",
  "main": "./dist/index.js",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.js"
    },
    "./config": {
      "types": "./dist/core/config.d.ts",
      "import": "./dist/core/config.js"
    }
  },
  "typesVersions": {
    "*": {
      "*": [
        "./dist/index.d.ts"
      ],
      "config": [
        "./dist/core/config.d.ts"
      ]
    }
  },
  "bin": {
    "cachio": "./dist/cli.js"
  },
  "scripts": {
    "prepublishOnly": "pnpm clean && pnpm lint && pnpm check-types && pnpm build",
    "release": "npm publish --access public",
    "test": "vitest",
    "check-types": "tsc --noEmit",
    "lint": "ulint . --max-warnings 0",
    "clean": "rm -rf dist",
    "build": "pnpm vite build",
    "dev": "pnpm vite build -w"
  },
  "keywords": [
    "cachio",
    "cache",
    "react",
    "next",
    "node",
    "json",
    "key-value",
    "storage",
    "node.js",
    "cli",
    "async",
    "javascript",
    "typescript"
  ],
  "author": {
    "name": "Estarlin R",
    "email": "dev@estarlincito.com",
    "url": "https://estarlincito.com"
  },
  "files": [
    "LICENSE",
    "README.md",
    "dist"
  ],
  "license": "MIT",
  "homepage": "https://github.com/estarlincito/cachio#readme",
  "repository": {
    "type": "git",
    "url": "https://github.com/estarlincito/cachio.git"
  },
  "bugs": {
    "url": "https://github.com/estarlincito/cachio/issues"
  },
  "devDependencies": {
    "@types/node": "^24.3.1",
    "doglob": "^0.0.2",
    "typescript": "^5.9.2",
    "ulint": "^0.0.2",
    "vite": "^7.1.4",
    "vite-plugin-dts": "^4.5.4"
  }
}
