UNPKG

2.56 kBJSONView Raw
1{
2 "name": "hyperdrive-daemon",
3 "version": "1.14.1",
4 "description": "A FUSE-mountable distributed filesystem, built on Hyperdrive",
5 "main": "index.js",
6 "bin": {
7 "hyperdrive": "./bin/run/run"
8 },
9 "scripts": {
10 "test": "NODE_ENV=test tape test/*.js"
11 },
12 "files": [
13 "index.js",
14 "manager.js",
15 "scripts/",
16 "lib/",
17 "bin/"
18 ],
19 "repository": {
20 "type": "git",
21 "url": "git+https://github.com/andrewosh/hyperdrive-daemon.git"
22 },
23 "keywords": [
24 "hyperdrive",
25 "fuse",
26 "daemon"
27 ],
28 "author": "Andrew Osheorff <andrewosh@gmail.com>",
29 "license": "MIT",
30 "bugs": {
31 "url": "https://github.com/andrewosh/hyperdrive-daemon/issues"
32 },
33 "homepage": "https://github.com/andrewosh/hyperdrive-daemon#readme",
34 "dependencies": {
35 "@grpc/grpc-js": "^0.5.1",
36 "@oclif/command": "^1.5.19",
37 "@oclif/config": "^1.14.0",
38 "@oclif/errors": "^1.2.2",
39 "@oclif/plugin-autocomplete": "^0.1.5",
40 "@oclif/plugin-help": "^2.2.3",
41 "buffer-json-encoding": "^1.0.2",
42 "call-me-maybe": "^1.0.1",
43 "corestore": "^5.0.0",
44 "corestore-swarm-networking": "^5.0.0",
45 "dat-encoding": "^5.0.1",
46 "end-of-stream": "^1.4.4",
47 "fs-extra": "^7.0.1",
48 "globby": "^11.0.0",
49 "google-protobuf": "^3.8.0",
50 "hypercore-cache": "^1.0.2",
51 "hypercore-crypto": "^2.0.2",
52 "hypercore-default-storage": "^1.0.0",
53 "hypercore-protocol": "^8.0.0",
54 "hyperdrive": "^10.8.10",
55 "hyperdrive-daemon-client": "^1.14.3",
56 "hyperdrive-schemas": "^1.9.0",
57 "level": "^6.0.0",
58 "level-mem": "^5.0.1",
59 "minimist": "^1.2.5",
60 "mkdirp": "^0.5.1",
61 "nanoresource-promise": "^1.2.2",
62 "ora": "^4.0.3",
63 "peersockets": "^0.3.0",
64 "pino": "^5.12.6",
65 "pm2": "^4.2.1",
66 "process-top": "^1.1.0",
67 "pump": "^3.0.0",
68 "pumpify": "^2.0.1",
69 "random-access-memory": "^3.1.1",
70 "stream-collector": "^1.0.1",
71 "streamx": "^2.6.0",
72 "subleveldown": "^4.0.0",
73 "varint": "^5.0.0"
74 },
75 "optionalDependencies": {
76 "fuse-native": "^2.2.1",
77 "hyperdrive-fuse": "^1.2.12"
78 },
79 "devDependencies": {
80 "standard": "^12.0.1",
81 "tape": "^4.10.1",
82 "tmp-promise": "^2.0.1"
83 },
84 "standard": {
85 "ignore": [
86 "lib/fuse/index.js",
87 "bin/commands/*.js",
88 "bin/commands/debug/*.js",
89 "bin/commands/cleanup/*.js"
90 ]
91 },
92 "oclif": {
93 "commands": "./bin/commands",
94 "bin": "hyperdrive",
95 "plugins": [
96 "@oclif/plugin-help",
97 "@oclif/plugin-autocomplete",
98 "hyperdrive-daemon-client"
99 ]
100 }
101}