-
-
Notifications
You must be signed in to change notification settings - Fork 48
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.81 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.81 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
{
"name": "@wowoengine/sawitdb",
"publishConfig": {
"access": "public"
},
"version": "3.0.0",
"description": "A high-performance hybrid paged database with Agricultural Query Language (AQL) and Generic SQL support. Features single-file storage (.sawit), object caching, worker-thread parallelism, crash recovery, ACID transactions (AKAD), and virtual views (TEROPONG).",
"main": "src/WowoEngine.js",
"scripts": {
"start": "node bin/sawit-server.js",
"start:cluster": "set SAWIT_CLUSTER_MODE=true && node bin/sawit-server.js",
"server": "node bin/sawit-server.js",
"test": "node cli/test.js",
"example": "node examples/example_client.js",
"cli": "node cli/remote.js sawitdb://localhost:7878/default",
"dev": "set SAWIT_LOG_LEVEL=debug && node bin/sawit-server.js",
"bench": "node cli/benchmark.js --spawn --workers=1 --clients=1",
"bench:cluster": "node cli/benchmark.js --spawn --cluster --workers=4 --clients=10"
},
"keywords": [
"database",
"database-engine",
"database-server",
"database-client",
"database-remote",
"database-local",
"database-embedded",
"database-single-file",
"database-binary",
"database-file",
"sawitdb",
"wowoengine",
"wowoengine/sawitdb",
"document-database",
"nosql",
"json",
"btree",
"indexing",
"tcp-server",
"networking",
"agricultural",
"indonesian",
"mongodb-like",
"embedded-database"
],
"author": "SawitDB Community",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/WowoEngine/SawitDB.git"
},
"engines": {
"node": ">=12.0.0"
},
"bin": {
"sawitdb-server": "bin/sawit-server.js",
"sawitdb-cli": "cli/remote.js"
},
"files": [
"src/",
"bin/",
"cli/",
"docs/",
"README.md"
]
}