-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 892 Bytes
/
Copy pathpackage.json
File metadata and controls
43 lines (43 loc) · 892 Bytes
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
{
"name": "valkey-http-server",
"version": "0.1.1",
"description": "Self-hostable HTTP proxy for Valkey — lets edge/serverless clients (valkey-http) reach Valkey over HTTP",
"type": "module",
"main": "server.js",
"bin": {
"valkey-http-server": "./bin.js"
},
"files": [
"server.js",
"bin.js"
],
"scripts": {
"start": "node bin.js",
"test": "node --test"
},
"keywords": [
"valkey",
"http",
"proxy",
"rest",
"edge",
"serverless",
"fastify"
],
"author": "Srinu Desetti",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/webdevelopersrinu/valkey-http-server.git"
},
"bugs": {
"url": "https://github.com/webdevelopersrinu/valkey-http-server/issues"
},
"dependencies": {
"fastify": "^5.0.0",
"iovalkey": "^0.3.0"
},
"engines": {
"node": ">=18"
}
}