-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1.03 KB
/
package.json
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
{
"name": "meg.db-light",
"version": "1.1.1",
"description": "MegDB-light, A lightweight TypeScript database module providing a type-safe API for efficient data storage and retrieval. Easily extendable with custom drivers, including a built-in JSONDriver.",
"main": "lib/main.js",
"scripts": {
"test:general": "ts-node tests/generalTest.ts",
"test:benchmark": "ts-node tests/benchmark.ts",
"build": "tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/MegalithOfficial/meg.db-light.git"
},
"keywords": [
"database",
"json",
"hackable",
"simple",
"fast",
"discord",
"lightweight",
"flexable"
],
"author": "MegalithOfficial",
"license": "GPL-3.0-or-later",
"bugs": {
"url": "https://github.com/MegalithOfficial/meg.db-light/issues"
},
"homepage": "https://github.com/MegalithOfficial/meg.db-light#readme",
"dependencies": {
"lodash": "^4.17.21"
},
"devDependencies": {
"@types/node": "^20.11.24",
"@types/lodash": "^4.17.0"
}
}