-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.11 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.11 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
{
"name": "descript-redis-cache",
"version": "5.0.0",
"description": "plugin for descript to use redis as cache",
"main": "./build/index.js",
"types": "./build/index.d.ts",
"scripts": {
"eslint": "npx eslint .",
"test": "npx vitest",
"ts-compile": "npx tsc --noEmit",
"prepack": "rm -rf build && npx tsc -p ./tsconfig-build.json"
},
"repository": {
"type": "git",
"url": "https://github.com/descript-org/descript-redis-cache"
},
"keywords": [
"descript",
"redis"
],
"author": "Boris Zhidkov <eljusto@yandex-team.ru>",
"license": "MIT",
"bugs": {
"url": ""
},
"homepage": "",
"engines": {
"node": ">= 20.12.0"
},
"files": [
"build"
],
"peerDependencies": {
"@redis/client": "^5",
"descript": ">=4"
},
"devDependencies": {
"@eslint/js": "^9.14.0",
"@redis/client": "^5.8.2",
"@stylistic/eslint-plugin": "^5.3.1",
"@types/eslint__js": "^8.42.3",
"@types/node": "^22.18.1",
"descript": "^4.0.16",
"eslint": "^9.35.0",
"typescript": "^5.9.2",
"typescript-eslint": "^8.42.0",
"vitest": "^3.2.4"
}
}