-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 736 Bytes
/
Copy pathpackage.json
File metadata and controls
37 lines (37 loc) · 736 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
{
"name": "dorrat-cache",
"version": "3.0.0",
"description": "Ultra-ligero cache in-memory (TTL/LRU/LFU) con persistencia opcional, TTL adaptativo y estrategia pluggable.",
"author": "DIEGO-OFC",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/DIEGO-OFC/dorrat-cache.git"
},
"type": "module",
"exports": {
".": {
"import": "./esm/index.js",
"require": "./cjs/index.cjs"
}
},
"main": "./cjs/index.cjs",
"module": "./esm/index.js",
"types": "./types/index.d.ts",
"keywords": [
"cache",
"ttl",
"lru",
"lfu",
"adaptive",
"persist"
],
"files": [
"esm",
"cjs",
"types"
],
"engines": {
"node": ">=18"
}
}