-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1021 Bytes
/
package.json
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
{
"name": "run-cache",
"version": "1.4.1",
"description": "RunCache is a dependency-free, light-weight in-memory caching library for JavaScript and TypeScript that allows you to cache `string` values with optional time-to-live (TTL) settings. It also supports caching values generated from asynchronous functions and provides methods to refetch them on demand.",
"main": "dist/run-cache.js",
"types": "dist/run-cache.d.ts",
"scripts": {
"build": "tsc",
"test": "jest test.ts"
},
"files": [
"dist"
],
"type": "commonjs",
"keywords": [
"javascript",
"library",
"typescript",
"memory",
"cache",
"memory-cache",
"runtime-cache"
],
"author": "helloscoopa",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/helloscoopa/run-cache.git"
},
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/uuid": "^10.0.0",
"jest": "^29.7.0",
"ts-jest": "^29.2.5",
"tsx": "^4.19.1",
"uuid": "^10.0.0"
}
}