-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.53 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 1.53 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
68
69
{
"name": "nexadb",
"version": "1.0.0",
"description": "Zero-dependency LSM-Tree database with professional admin UI",
"main": "index.js",
"bin": {
"nexadb": "./bin/nexadb.js",
"nexadb-server": "./bin/nexadb-server.js",
"nexadb-admin": "./bin/nexadb-admin.js"
},
"scripts": {
"start": "node bin/nexadb-server.js",
"admin": "node bin/nexadb-admin.js",
"test": "echo \"No tests yet\" && exit 0",
"install-python": "python3 -m pip install --upgrade pip",
"postinstall": "node scripts/postinstall.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/yourusername/nexadb.git"
},
"keywords": [
"database",
"nosql",
"lsm-tree",
"key-value",
"document-database",
"vector-database",
"embeddings",
"zero-dependency",
"lightweight",
"python",
"rest-api"
],
"author": "NexaDB Team",
"license": "MIT",
"bugs": {
"url": "https://github.com/yourusername/nexadb/issues"
},
"homepage": "https://github.com/yourusername/nexadb#readme",
"engines": {
"node": ">=14.0.0",
"python": ">=3.8"
},
"preferGlobal": true,
"os": [
"darwin",
"linux",
"win32"
],
"files": [
"bin/",
"scripts/",
"nexadb_server.py",
"nexadb_admin_server.py",
"nexadb_client.py",
"veloxdb_core.py",
"storage_engine.py",
"nexadb_admin_professional.html",
"nexadb_admin_modern.html",
"README.md",
"LICENSE",
"INSTALLATION.md",
"DEPLOY_*.md"
],
"dependencies": {
"nexaclient": "^1.1.0"
}
}