forked from holepunchto/hyperdb
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 1.66 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 1.66 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
{
"name": "hyperdb",
"version": "5.0.1",
"description": "P2P Indexable Database",
"files": [
"index.js",
"runtime.js",
"runtime.mjs",
"builder/*.js",
"builder/*.mjs",
"lib/**"
],
"scripts": {
"format": "prettier --write .",
"lint": "prettier --check . && lunte",
"test": "brittle-node test/*.js",
"generate": "rm -rf test/fixtures/generated && node test/fixtures/generate.js"
},
"exports": {
".": "./index.js",
"./package": "./package.json",
"./builder": {
"import": "./builder/index.mjs",
"default": "./builder/index.js"
},
"./runtime": {
"import": "./runtime.mjs",
"default": "./runtime.js"
}
},
"imports": {
"fs": {
"bare": "bare-fs",
"default": "fs"
},
"path": {
"bare": "bare-path",
"default": "path"
}
},
"dependencies": {
"b4a": "^1.6.6",
"compact-encoding": "^2.15.0",
"generate-object-property": "^2.0.0",
"generate-string": "^1.0.1",
"hyperbee": "^2.24.2",
"hyperschema": "^1.9.2",
"index-encoder": "^3.4.0",
"refcounter": "^1.0.0",
"rocksdb-native": "^3.0.0",
"scope-lock": "^1.2.4",
"streamx": "^2.20.0"
},
"devDependencies": {
"brittle": "^3.7.0",
"hypercore": "^11.0.0",
"lunte": "^1.3.0",
"prettier": "^3.6.2",
"prettier-config-holepunch": "^2.0.0",
"test-tmp": "^1.2.1"
},
"repository": {
"type": "git",
"url": "https://github.com/holepunchto/hyperdb.git"
},
"author": "Holepunch Inc",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/holepunchto/hyperdb/issues"
},
"homepage": "https://github.com/holepunchto/hyperdb"
}