mirror of
https://gh.wpcy.net/https://github.com/djav1985/v-wordpress-plugin-updater.git
synced 2026-04-24 04:03:01 +08:00
78 lines
No EOL
1.8 KiB
JSON
78 lines
No EOL
1.8 KiB
JSON
{
|
|
"name": "cacheable",
|
|
"version": "1.10.3",
|
|
"description": "High Performance Layer 1 / Layer 2 Caching with Keyv Storage",
|
|
"type": "module",
|
|
"main": "./dist/index.cjs",
|
|
"module": "./dist/index.js",
|
|
"types": "./dist/index.d.ts",
|
|
"exports": {
|
|
".": {
|
|
"require": "./dist/index.cjs",
|
|
"import": "./dist/index.js"
|
|
}
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/jaredwray/cacheable.git",
|
|
"directory": "packages/cacheable"
|
|
},
|
|
"author": "Jared Wray <me@jaredwray.com>",
|
|
"license": "MIT",
|
|
"private": false,
|
|
"devDependencies": {
|
|
"@faker-js/faker": "^9.9.0",
|
|
"@keyv/redis": "^5.0.0",
|
|
"@keyv/valkey": "^1.0.7",
|
|
"@types/eslint": "^9.6.1",
|
|
"@types/node": "^24.1.0",
|
|
"@vitest/coverage-v8": "^3.2.4",
|
|
"lru-cache": "^11.1.0",
|
|
"rimraf": "^6.0.1",
|
|
"tsup": "^8.5.0",
|
|
"typescript": "^5.8.3",
|
|
"vitest": "^3.2.4",
|
|
"xo": "^1.2.1"
|
|
},
|
|
"dependencies": {
|
|
"hookified": "^1.10.0",
|
|
"keyv": "^5.4.0"
|
|
},
|
|
"keywords": [
|
|
"cacheable",
|
|
"high performance",
|
|
"layer 1 caching",
|
|
"layer 2 caching",
|
|
"distributed caching",
|
|
"Keyv storage engine",
|
|
"memory caching",
|
|
"LRU cache",
|
|
"expiration",
|
|
"CacheableMemory",
|
|
"offline support",
|
|
"distributed sync",
|
|
"secondary store",
|
|
"primary store",
|
|
"non-blocking operations",
|
|
"cache statistics",
|
|
"layered caching",
|
|
"fault tolerant",
|
|
"scalable cache",
|
|
"in-memory cache",
|
|
"distributed cache",
|
|
"lruSize",
|
|
"lru",
|
|
"multi-tier cache"
|
|
],
|
|
"files": [
|
|
"dist",
|
|
"LICENSE"
|
|
],
|
|
"scripts": {
|
|
"build": "rimraf ./dist && tsup src/index.ts --format cjs,esm --dts --clean",
|
|
"prepublish": "pnpm build",
|
|
"test": "xo --fix && vitest run --coverage",
|
|
"test:ci": "xo && vitest run --coverage",
|
|
"clean": "rimraf ./dist ./coverage ./node_modules"
|
|
}
|
|
} |