-
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 1.82 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 1.82 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
70
71
72
73
74
75
76
77
{
"name": "axiodb",
"version": "9.6.2",
"description": "The Pure JavaScript Alternative to SQLite. Embedded NoSQL database for Node.js with MongoDB-style queries, zero native dependencies, built-in InMemoryCache, and web GUI. Perfect for desktop apps, CLI tools, and embedded systems. No compilation, no platform issues—pure JavaScript from npm install to production.",
"main": "./lib/config/DB.js",
"types": "./lib/config/DB.d.ts",
"scripts": {
"test": "node ./Test/run.js",
"build": "tsc"
},
"keywords": [
"axiodb",
"database",
"nosql",
"embedded-database",
"sqlite-alternative",
"mongodb-queries",
"file-database",
"json-database",
"nodejs",
"typescript",
"zero-dependencies",
"no-native-bindings",
"in-memory-cache",
"caching",
"encryption",
"aes-256",
"schema-validation",
"aggregation",
"aggregation-pipeline",
"bulk-operations",
"worker-threads",
"multi-core",
"desktop-app",
"cli-tool",
"electron",
"web-gui",
"database-gui",
"query-builder",
"chainable-api",
"fluent-api",
"fast",
"lightweight",
"scalable",
"production-ready",
"developer-friendly",
"open-source",
"cross-platform"
],
"author": "Ankan Saha",
"license": "MIT",
"funding": {
"type": "git",
"url": "https://github.com/sponsors/AnkanSaha"
},
"repository": {
"type": "git",
"url": "https://github.com/nexoral/AxioDB"
},
"dependencies": {
"@fastify/cors": "^11.0.1",
"@fastify/multipart": "^9.0.3",
"@fastify/static": "^8.2.0",
"fastify": "^5.4.0",
"outers": "^8.6.2",
"tar": "^7.4.3"
},
"devDependencies": {
"@types/tar": "^6.1.13",
"typescript": "^5.6.2"
},
"engines": {
"node": ">=20.0.0",
"npm": ">=6.0.0",
"yarn": ">=1.0.0"
}
}