-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.1 KB
/
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
39
40
41
42
43
44
45
46
47
48
49
50
{
"name": "descript-redis-cache",
"version": "4.0.7",
"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 <[email protected]>",
"license": "MIT",
"bugs": {
"url": ""
},
"homepage": "",
"engines": {
"node": ">= 20.12.0"
},
"files": [
"build"
],
"dependencies": {
"ioredis": "^5.4.1"
},
"peerDependencies": {
"descript": ">=4"
},
"devDependencies": {
"@eslint/js": "^9.14.0",
"@stylistic/eslint-plugin-ts": "^2.11.0",
"@types/eslint__js": "^8.42.3",
"@types/node": "^22.10.0",
"descript": "^4.0.6",
"eslint": "^9.15.0",
"typescript": "^5.7.2",
"typescript-eslint": "^8.16.0",
"vitest": "^2.1.6"
}
}