-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 997 Bytes
/
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
{
"name": "jsonblite",
"description": "JSONBLite is a single file, key-value binary JSON database, written as TypeScript class for Node.js. A simple, persistent JSON/CBOR storage.",
"version": "0.0.1",
"main": "dist/src/jsonblite.js",
"types": "dist/src/jsonblite.d.ts",
"type": "module",
"scripts": {
"build": "tsc",
"test": "tsc && node dist/test/jsonblite.test.js && node dist/test/acid.test.js",
"benchmark": "tsc && node dist/test/benchmark.test.js"
},
"dependencies": {
"cbor-x": "^1.6.0",
"fs-ext": "^2.0.0"
},
"devDependencies": {
"@types/fs-ext": "^2.0.3",
"@types/node": "^20.14.10",
"typescript": "^5.5.3"
},
"files": [
"dist",
"README.md",
"src"
],
"author": "Matias Kaskimies",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/mkaski/jsonblite.git"
},
"keywords": [
"json",
"cbor",
"binary",
"database",
"key-value",
"single-file"
]
}