-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
37 lines (37 loc) · 937 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
{
"name": "hyperobjects",
"version": "1.0.1",
"description": "object store built on hypercore",
"scripts": {
"generate_protobuf": "protocol-buffers -o ./messages.js ./schema.proto && copyfiles messages.js dist",
"test": "tape ./dist/tests/*.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fsteff/hyperobjects.git"
},
"keywords": [
"hypercore",
"p2p",
"db"
],
"author": "Stefan Fixl (Fsteff)",
"license": "MIT",
"bugs": {
"url": "https://github.com/fsteff/hyperobjects/issues"
},
"homepage": "https://github.com/fsteff/hyperobjects#readme",
"dependencies": {
"protocol-buffers": "^4.2.0",
"codecs": "^2.2.0"
},
"devDependencies": {
"@types/codecs": "^2.2.3",
"@types/streamx": "^2.9.1",
"copyfiles": "^2.4.1",
"hypercore": "^9.11.0",
"random-access-memory": "^3.1.2",
"tape": "^5.3.1",
"typescript": "^4.4.3"
}
}