-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 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
{
"name": "@iocium/cachekit",
"version": "1.1.0",
"description": "A pluggable, backend-agnostic caching adapter for Node.js and serverless platforms",
"main": "dist/index.cjs",
"module": "dist/index.js",
"exports": {
".": {
"require": "./dist/index.cjs",
"import": "./dist/index.js"
},
"./package.json": "./package.json"
},
"types": "dist/index.d.ts",
"type": "module",
"scripts": {
"dev": "tsup --watch",
"build": "tsup",
"test": "jest",
"test:coverage": "jest --coverage",
"docs": "typedoc"
},
"keywords": [
"cache",
"intel",
"threat-intel",
"ttl",
"cloudflare",
"kv",
"d1",
"redis",
"ioc",
"pluggable"
],
"author": "Iocium",
"license": "MIT",
"devDependencies": {
"@cloudflare/workers-types": "^4.20250514.0",
"@types/jest": "^30.0.0",
"auto-changelog": "^2.5.0",
"jest": "^30.2.0",
"ts-jest": "^29.3.3",
"tsup": "^8.4.0",
"typedoc": "^0.28.4",
"typescript": "^6.0.2"
}
}