-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 951 Bytes
/
Copy pathpackage.json
File metadata and controls
40 lines (40 loc) · 951 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
{
"name": "triviumdb",
"version": "0.8.8",
"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",
"test:lifecycle": "node tests/node/lifecycle.js",
"test:public-api": "node tests/node/public_api.js",
"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"
}
}