-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 841 Bytes
/
Copy pathpackage.json
File metadata and controls
38 lines (38 loc) · 841 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": "triviumdb",
"version": "0.7.1",
"description": "AI-native embedded database: Vector + Graph + Relational in one file",
"main": "index.js",
"types": "triviumdb.d.ts",
"files": [
"*.node",
"index.js",
"triviumdb.d.ts"
],
"napi": {
"binaryName": "triviumdb"
},
"scripts": {
"build": "napi build --platform --release --features nodejs",
"build:debug": "napi build --platform --features nodejs",
"prepublishOnly": "napi build --platform --release --features nodejs"
},
"keywords": [
"database",
"vector",
"graph",
"embedding",
"ai",
"sqlite",
"rust"
],
"author": "YoKONCy",
"license": "Apache-2.0",
"devDependencies": {
"@napi-rs/cli": "^3.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/YoKONCy/TriviumDB"
}
}