| { |
| "name": "@cacheable/utils", |
| "version": "2.4.1", |
| "description": "Cacheable Utilities for Caching Libraries", |
| "type": "module", |
| "main": "./dist/index.js", |
| "module": "./dist/index.js", |
| "types": "./dist/index.d.ts", |
| "exports": { |
| ".": { |
| "import": { |
| "types": "./dist/index.d.ts", |
| "default": "./dist/index.js" |
| }, |
| "require": { |
| "types": "./dist/index.d.cts", |
| "default": "./dist/index.cjs" |
| } |
| } |
| }, |
| "repository": { |
| "type": "git", |
| "url": "git+https://github.com/jaredwray/cacheable.git", |
| "directory": "packages/utils" |
| }, |
| "author": "Jared Wray <me@jaredwray.com>", |
| "license": "MIT", |
| "private": false, |
| "dependencies": { |
| "hashery": "^1.5.1", |
| "keyv": "^5.6.0" |
| }, |
| "devDependencies": { |
| "tsup": "^8.5.1", |
| "typescript": "^5.9.3" |
| }, |
| "keywords": [ |
| "cacheable", |
| "caching", |
| "utilities", |
| "hashing", |
| "keyv", |
| "cache utils" |
| ], |
| "files": [ |
| "dist", |
| "LICENSE" |
| ], |
| "scripts": { |
| "build": "rimraf ./dist && tsup src/index.ts --format cjs,esm --dts --clean", |
| "lint": "biome check --write --error-on-warnings", |
| "test": "pnpm lint && vitest run --coverage", |
| "test:ci": "biome check --error-on-warnings && vitest run --coverage", |
| "clean": "rimraf ./dist ./coverage ./node_modules" |
| } |
| } |