-
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.45 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.45 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": "@nodite/cache-manager-adapter",
"version": "17.0.0",
"description": "Adapter for using cache-manager with type-cacheable",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/**/*"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"clean": "rm -rf ./dist",
"start": "node ./dist/index.js",
"test": "jest --coverage --runInBand",
"test:watch": "jest --watch --runInBand",
"build": "npm run clean && tsc -p ./tsconfig.json",
"prepare": "npm run-script build",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nodite/type-cacheable-cache-manager-adapter.git"
},
"keywords": [
"cache",
"typescript",
"keyv"
],
"author": {
"name": "Oscaner",
"url": "https://github.com/Oscaner"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/nodite/type-cacheable-cache-manager-adapter/issues"
},
"homepage": "https://github.com/nodite/type-cacheable-cache-manager-adapter#readme",
"devDependencies": {
"@keyv/postgres": "^2",
"@resolid/keyv-sqlite": "github:nodite/keyv-sqlite#main",
"@types/jest": "^29",
"better-sqlite3": "^11",
"cacheable": "^1",
"jest": "^29",
"lru-cache": "^11",
"ts-jest": "^29",
"typescript": "^5"
},
"dependencies": {
"@type-cacheable/core": "^14",
"cache-manager": "^7",
"keyv": "^5",
"wildcard-match": "^5"
}
}