-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.74 KB
/
Copy pathpackage.json
File metadata and controls
57 lines (57 loc) · 1.74 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
{
"name": "axios-cache-interceptor-keyv",
"version": "1.1.0",
"description": "Universal storage adapter using Keyv for axios-cache-interceptor - supports Redis, SQLite, MongoDB, PostgreSQL and more backends",
"author": "Angel S. Moreno <angelxmoreno@gmail.com>",
"license": "MIT",
"private": false,
"repository": {
"type": "git",
"url": "git@github.com:angelxmoreno/axios-cache-interceptor-keyv.git"
},
"keywords": [
"axios-cache-interceptor",
"axios",
"cache",
"interceptor",
"keyv",
"redis",
"storage",
"typescript",
"sqlite",
"mongodb"
],
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"prepare": "lefthook install",
"build": "tsc",
"prepublishOnly": "bun run test && bun run lint",
"test": "bun test",
"test:coverage": "bun test --coverage --coverage-reporter=lcov",
"coverage:report": "bun run test:coverage && bun codecov -f coverage/lcov.info",
"lint": "biome check .",
"lint:fix": "biome check --write",
"lint:commits": "commitlint --from=origin/main --to=HEAD --verbose",
"typecheck": "tsc --noEmit"
},
"dependencies": {},
"devDependencies": {
"@biomejs/biome": "^2.2.0",
"@commitlint/cli": "^19.8.1",
"@commitlint/config-conventional": "^19.8.1",
"@types/bun": "^1.2.20",
"axios-mock-adapter": "^2.1.0",
"lefthook": "^1.12.3",
"typescript": "^5.9.2"
},
"peerDependencies": {
"@keyvhq/core": "^2.1.7",
"axios": "^1.11.0",
"axios-cache-interceptor": "^1.8.2"
}
}