forked from aiassistsecure/nedb
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.6 KB
/
Copy pathpackage.json
File metadata and controls
67 lines (67 loc) · 1.6 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
67
{
"name": "nedb-engine",
"version": "2.7.0",
"description": "NEDB — hash-chained, time-traveling, bi-temporal embedded database with Rust native core. SQL, Redis, MongoDB adapters. Causal Write Provenance. RESP2 wire protocol.",
"main": "index.js",
"types": "index.d.ts",
"bin": {
"nedbd-v2": "./nedbd-v2.js",
"nedbdv2": "./nedbd-v2.js",
"nedb-inspector": "./nedb-inspector.mjs"
},
"files": [
"index.js",
"index.d.ts",
"native.js",
"native.d.ts",
"nedbd-v2.js",
"nedb-inspector.mjs",
"*.node",
"nedbd-v2*",
"test/smoke.mjs",
"README.md",
"LICENSE"
],
"license": "GPL-3.0-or-later",
"homepage": "https://github.com/aiassistsecure/nedb#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/aiassistsecure/nedb.git"
},
"keywords": [
"database",
"embedded",
"mvcc",
"time-travel",
"bi-temporal",
"causal-provenance",
"tamper-evident",
"hash-chain",
"versioning",
"napi-rs",
"rust",
"nedb"
],
"engines": {
"node": ">= 16"
},
"napi": {
"name": "nedb",
"triples": {
"defaults": true,
"additional": [
"aarch64-apple-darwin",
"x86_64-unknown-linux-gnu",
"x86_64-pc-windows-msvc"
]
}
},
"scripts": {
"build": "napi build --release --platform --cargo-cwd rust/crates/nedb-node --js native.js --dts native.d.ts",
"build:debug": "napi build --platform --cargo-cwd rust/crates/nedb-node --js native.js --dts native.d.ts",
"test": "node test/smoke.mjs"
},
"devDependencies": {
"@napi-rs/cli": "^2.18.0"
}
}