UNPKG

2.48 kBJSONView Raw
1{
2 "name": "hyperdrive-daemon",
3 "version": "1.13.10",
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": "standard && 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": "^1.0.3",
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 "corestore": "^5.0.0",
43 "corestore-swarm-networking": "^5.0.0",
44 "dat-encoding": "^5.0.1",
45 "end-of-stream": "^1.4.4",
46 "fs-extra": "^7.0.1",
47 "globby": "^11.0.0",
48 "google-protobuf": "^3.8.0",
49 "hypercore-cache": "^1.0.2",
50 "hypercore-crypto": "^2.0.2",
51 "hypercore-default-storage": "^1.0.0",
52 "hypercore-protocol": "^8.0.0",
53 "hyperdrive": "^10.8.10",
54 "hyperdrive-daemon-client": "^1.14.3",
55 "hyperdrive-schemas": "^1.9.0",
56 "level": "^6.0.0",
57 "level-mem": "^5.0.1",
58 "minimist": "^1.2.5",
59 "mkdirp": "^0.5.1",
60 "ora": "^4.0.3",
61 "peersockets": "^0.3.0",
62 "pino": "^5.12.6",
63 "pm2": "^4.2.1",
64 "pump": "^3.0.0",
65 "pumpify": "^2.0.1",
66 "random-access-memory": "^3.1.1",
67 "stream-collector": "^1.0.1",
68 "streamx": "^2.6.0",
69 "subleveldown": "^4.0.0",
70 "through2-map": "^3.0.0"
71 },
72 "optionalDependencies": {
73 "fuse-native": "^2.2.1",
74 "hyperdrive-fuse": "^1.2.12"
75 },
76 "devDependencies": {
77 "standard": "^12.0.1",
78 "tape": "^4.10.1",
79 "tmp-promise": "^2.0.1"
80 },
81 "standard": {
82 "ignore": [
83 "lib/fuse/index.js",
84 "bin/commands/*.js",
85 "bin/commands/debug/*.js",
86 "bin/commands/cleanup/*.js"
87 ]
88 },
89 "oclif": {
90 "commands": "./bin/commands",
91 "bin": "hyperdrive",
92 "plugins": [
93 "@oclif/plugin-help",
94 "@oclif/plugin-autocomplete",
95 "hyperdrive-daemon-client"
96 ]
97 }
98}