-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
56 lines (56 loc) · 1.59 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
51
52
53
54
55
56
{
"name": "@nostr-dev-kit/ndk-cache-redis",
"version": "1.3.0",
"description": "NDK Redis Cache Adapter.",
"repository": {
"type": "git",
"url": "git+https://github.com/nostr-dev-kit/ndk-cache-redis.git"
},
"keywords": [
"nostr",
"redis",
"cache"
],
"author": "pablof7z",
"license": "MIT",
"bugs": {
"url": "https://github.com/nostr-dev-kit/ndk-cache-redis/issues"
},
"homepage": "https://github.com/nostr-dev-kit/ndk-cache-redis#readme",
"types": "./dist/index.d.ts",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"exports": {
"import": "./dist/index.mjs",
"require": "./dist/index.js"
},
"files": [
"dist",
"README.md"
],
"packageManager": "[email protected]",
"scripts": {
"dev": "pnpm build --watch",
"build": "tsup src/index.ts --format cjs,esm --dts",
"clean": "rm -rf dist",
"lint": "eslint src/**/*.ts",
"prettify": "prettier . --write --config .prettierrc"
},
"devDependencies": {
"@trivago/prettier-plugin-sort-imports": "^4.2.0",
"@types/debug": "^4.1.8",
"@types/node": "^20.5.0",
"@typescript-eslint/eslint-plugin": "^6.4.0",
"@typescript-eslint/parser": "^6.4.0",
"eslint": "^8.47.0",
"eslint-config-prettier": "^9.0.0",
"prettier": "^3.0.1",
"tsup": "^7.2.0",
"typescript": "^5.1.6"
},
"dependencies": {
"@nostr-dev-kit/ndk": "^0.8.14",
"debug": "^4.3.4",
"ioredis": "^5.3.2"
}
}