-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 792 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 792 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
{
"name": "jun-db",
"version": "3.0.0",
"description": "Transparent JavaScript object persistence using Proxies and binary storage. Features automatic sharding, atomic I/O, and LRU caching with zero dependencies.",
"main": "index.js",
"type": "module",
"files": [
"index.js",
"library/**/*"
],
"keywords": [
"db",
"jun",
"jun-db",
"nosql",
"database",
"sharding",
"v8-serialization",
"proxy-database",
"embedded-database",
"document-store",
"persistence",
"binary-storage",
"zero-dependency",
"atomic-writes",
"lru-cache"
],
"author": "Zeppth",
"license": "MIT",
"engines": {
"node": ">=18.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Zeppth/Jun-DB.git"
}
}