-
Notifications
You must be signed in to change notification settings - Fork 343
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 790 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 790 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
{
"name": "@ruvector/server",
"version": "0.1.0",
"description": "HTTP/gRPC server for RuVector - REST API with streaming support",
"main": "index.js",
"types": "index.d.ts",
"bin": {
"ruvector-server": "./bin/ruvector-server"
},
"files": [
"*.js",
"*.d.ts",
"bin/"
],
"scripts": {
"build": "cargo build --release",
"start": "cargo run --release",
"test": "cargo test"
},
"repository": {
"type": "git",
"url": "https://github.com/ruvnet/ruvector"
},
"keywords": [
"server",
"http",
"grpc",
"rest-api",
"vector-database",
"streaming"
],
"author": "rUv",
"license": "MIT",
"bugs": {
"url": "https://github.com/ruvnet/ruvector/issues"
},
"homepage": "https://github.com/ruvnet/ruvector"
}