-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
executable file
·71 lines (71 loc) · 1.86 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
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
{
"name": "@aoijs/aoi.db",
"version": "v0.0.0",
"description": "Database Management System with different types of databases.",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"type": "commonjs",
"exports": {
"import": "./dist/esm/index.js",
"require": "./dist/cjs/index.js"
},
"scripts": {
"test": "node tests/keyValue/keyValuecjs.js && node tests/keyValue/keyValuemjs.mjs && node tests/widecolumn/widecolcjs.js && node tests/widecolumn/widecolmjs.mjs && node tests/readdata.js",
"build": "npx tsc -p tsconfig.json && npx tsc -p tsconfig-cjs.json && npm run createpack",
"createpack": "node builder/pack.js",
"exec": "node executions/keyvalue/exec.js && node executions/widecolumn/exec.js",
"docs": "typedoc"
},
"engines": {
"node": ">=20.x"
},
"license": "MIT",
"keywords": [
"aoi.db",
"aoidb",
"dbd.js",
"dbdjs",
"dbd",
"aoi.js",
"aoi",
"json",
"database",
"discord"
],
"dependencies": {
"@aoijs/aoi.structures": "^1.0.0",
"jsonrepair": "^3.5.1",
"JSONStream": "^1.3.5",
"sorted-btree": "^1.8.1",
"tar": "^6.1.15",
"ws": "^8.13.0"
},
"devDependencies": {
"@types/benchmark": "^2.1.2",
"@types/node": "^20.4.0",
"@types/tar": "^6.1.5",
"@types/ws": "^8.5.5",
"benchmark": "^2.1.4",
"benny": "^3.7.1",
"typedoc": "^0.24.8",
"typescript": "^5.1.6"
},
"files": [
"dist",
"package.json",
"README.md"
],
"homepage": "https://aoijs.github.io/aoi.db//",
"repository": {
"type": "git",
"url": "https://github.com/aoijs/aoi.db.git"
},
"author": "Leref",
"maintainers": [
"USERSATOSHI"
],
"bugs": {
"url": "https://github.com/aoijs/aoi.db/issues"
},
"readme": "https://github.com/aoijs/aoi.db/blob/v2/README.md"
}