-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 2.1 KB
/
Copy pathpackage.json
File metadata and controls
88 lines (88 loc) · 2.1 KB
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "cacheables",
"version": "3.0.1",
"description": "A small, typed cache with multilayer storage buckets, five cache policies (incl. stale-while-revalidate) and concurrency-safe deduplication. Zero dependencies, browser + Node.",
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.cts",
"files": [
"dist",
"package.json",
"README.md",
"LICENSE.md"
],
"engines": {
"node": ">=18"
},
"sideEffects": false,
"exports": {
".": {
"import": {
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
}
},
"scripts": {
"size": "size-limit",
"test": "vitest run",
"test:watch": "vitest",
"typecheck": "tsc --noEmit",
"eslint": "eslint --fix src/**/*.ts",
"lint": "eslint src/**/*.ts",
"format:check": "prettier --check .",
"build": "tsdown",
"publint": "publint",
"attw": "attw --pack ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/grischaerbe/cacheables.git"
},
"size-limit": [
{
"path": "./dist/index.mjs"
}
],
"keywords": [
"node",
"browser",
"cache",
"in-memory",
"typescript",
"remember",
"cacheables",
"multilayer",
"multi-tier",
"stale-while-revalidate",
"swr",
"redis",
"s3"
],
"author": "Grischa Erbe <grischa.erbe@googlemail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/grischaerbe/cacheables/issues"
},
"homepage": "https://github.com/grischaerbe/cacheables#readme",
"devDependencies": {
"@arethetypeswrong/cli": "^0.18.2",
"@eslint/js": "^10.0.1",
"@size-limit/preset-small-lib": "^12.1.0",
"eslint": "^10.2.1",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.5",
"prettier": "^3.8.3",
"publint": "^0.3.18",
"size-limit": "^12.1.0",
"tsdown": "^0.21.10",
"typescript": "^5.9.3",
"typescript-eslint": "^8.59.1",
"vitest": "^4.0.10"
}
}