-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·46 lines (46 loc) · 1.07 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
{
"name": "exabase",
"version": "0.0.0-rc-37",
"description": "A scaling focused distributed nosql database with surprising performance and strong data consistency.",
"main": "dist/index.js",
"type": "module",
"files": [
"dist/index.d.ts",
"dist/primitives/*",
"dist/index.js"
],
"keywords": [
"database",
"db",
"acid",
"backup",
"migrations",
"distributed",
"schema",
"atomic",
"consistency",
"isolated",
"durable",
"exabase",
"nosql",
"javascript"
],
"scripts": {
"compile": "rm -rf ./DB && rm -rf ./dist && bun bundle.ts",
"test": "node --test --experimental-strip-types tests/**est.ts",
"tbun": "bun test tests/bun.all_tests.spec.ts --timeout 20000",
"build": "bun bundle.ts && npm pack && mv **.tgz ~/",
"bench": "bun ./z/benchmark.ts"
},
"author": "Friday Candour",
"license": "Apache",
"dependencies": {
"msgpackr": "^1.10.1"
},
"devDependencies": {
"@types/bun": "^1.0.1",
"@types/node": "^18.7.15",
"benchmark": "^2.1.4",
"mitata": "^0.1.6"
}
}