-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.54 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.54 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
58
59
60
61
62
63
64
65
66
{
"name": "@fastify/valkey-glide",
"version": "0.1.0",
"description": "Plugin to share a common valkey connection across Fastify.",
"main": "index.js",
"type": "commonjs",
"types": "types/index.d.ts",
"scripts": {
"lint": "eslint",
"lint:fix": "eslint --fix",
"redis": "docker run -p 6379:6379 --rm redis:7.2",
"valkey": "docker run -p 6379:6379 --rm valkey/valkey:latest",
"test": "npm run unit && npm run typescript",
"typescript": "tsd",
"unit": "c8 --100 node --test"
},
"keywords": [
"fastify",
"valkey",
"valkey-glide",
"redis",
"database",
"speed",
"cache"
],
"files": [
"index.js",
"types/index.d.ts"
],
"author": "Ofek Avrahami",
"repository": {
"type": "git",
"url": "git+https://github.com/fastify/fastify-valkey-glide.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/fastify/fastify-valkey-glide/issues"
},
"homepage": "https://github.com/fastify/fastify-valkey-glide#readme",
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/fastify"
},
{
"type": "opencollective",
"url": "https://opencollective.com/fastify"
}
],
"devDependencies": {
"@types/node": "^24.0.8",
"c8": "^11.0.0",
"eslint": "^9.17.0",
"fastify": "^5.0.0",
"neostandard": "^0.12.0",
"tsd": "^0.33.0",
"why-is-node-running": "^3.2.2"
},
"dependencies": {
"fastify-plugin": "^5.0.0",
"@valkey/valkey-glide": "^2.0.1"
},
"publishConfig": {
"access": "public"
}
}