@libp2p/daemon 1.0.4 → 2.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +23 -13
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -1,29 +1,32 @@
|
|
|
1
|
-
# libp2p
|
|
1
|
+
# @libp2p/daemon <!-- omit in toc -->
|
|
2
2
|
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
3
|
+
[](http://libp2p.io/)
|
|
4
|
+
[](http://webchat.freenode.net/?channels=%23libp2p)
|
|
5
|
+
[](https://discuss.libp2p.io)
|
|
6
|
+
[](https://codecov.io/gh/libp2p/js-libp2p-daemon)
|
|
7
|
+
[](https://github.com/libp2p/js-libp2p-daemon/actions/workflows/js-test-and-release.yml)
|
|
6
8
|
|
|
7
|
-
>
|
|
9
|
+
> libp2p-daemon JavaScript implementation
|
|
8
10
|
|
|
9
11
|
## Table of contents <!-- omit in toc -->
|
|
10
12
|
|
|
11
|
-
- [Specs](#specs)
|
|
12
13
|
- [Install](#install)
|
|
14
|
+
- [Specs](#specs)
|
|
13
15
|
- [Usage](#usage)
|
|
14
16
|
- [Contribute](#contribute)
|
|
15
17
|
- [License](#license)
|
|
16
|
-
|
|
17
|
-
## Specs
|
|
18
|
-
|
|
19
|
-
The specs for the daemon are currently housed in the go implementation. You can read them at [libp2p/go-libp2p-daemon](https://github.com/libp2p/go-libp2p-daemon/blob/master/specs/README.md)
|
|
18
|
+
- [Contribution](#contribution)
|
|
20
19
|
|
|
21
20
|
## Install
|
|
22
21
|
|
|
23
|
-
```
|
|
24
|
-
npm i
|
|
22
|
+
```console
|
|
23
|
+
$ npm i @libp2p/daemon
|
|
25
24
|
```
|
|
26
25
|
|
|
26
|
+
## Specs
|
|
27
|
+
|
|
28
|
+
The specs for the daemon are currently housed in the go implementation. You can read them at [libp2p/go-libp2p-daemon](https://github.com/libp2p/go-libp2p-daemon/blob/master/specs/README.md)
|
|
29
|
+
|
|
27
30
|
## Usage
|
|
28
31
|
|
|
29
32
|
```console
|
|
@@ -46,4 +49,11 @@ This module is actively under development. Please check out the issues and submi
|
|
|
46
49
|
|
|
47
50
|
## License
|
|
48
51
|
|
|
49
|
-
|
|
52
|
+
Licensed under either of
|
|
53
|
+
|
|
54
|
+
- Apache 2.0, ([LICENSE-APACHE](LICENSE-APACHE) / <http://www.apache.org/licenses/LICENSE-2.0>)
|
|
55
|
+
- MIT ([LICENSE-MIT](LICENSE-MIT) / <http://opensource.org/licenses/MIT>)
|
|
56
|
+
|
|
57
|
+
## Contribution
|
|
58
|
+
|
|
59
|
+
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@libp2p/daemon",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "2.0.0",
|
|
4
4
|
"description": "libp2p-daemon JavaScript implementation",
|
|
5
5
|
"license": "Apache-2.0 OR MIT",
|
|
6
6
|
"homepage": "https://github.com/libp2p/js-libp2p-daemon/tree/master/packages/libp2p-daemon#readme",
|
|
@@ -31,6 +31,7 @@
|
|
|
31
31
|
],
|
|
32
32
|
"exports": {
|
|
33
33
|
".": {
|
|
34
|
+
"types": "./src/index.d.ts",
|
|
34
35
|
"import": "./dist/src/index.js"
|
|
35
36
|
}
|
|
36
37
|
},
|
|
@@ -132,14 +133,13 @@
|
|
|
132
133
|
},
|
|
133
134
|
"dependencies": {
|
|
134
135
|
"@libp2p/daemon-server": "^1.0.0",
|
|
135
|
-
"@libp2p/interfaces": "^2.0.1",
|
|
136
136
|
"@multiformats/multiaddr": "^10.1.8",
|
|
137
137
|
"es-main": "^1.0.2",
|
|
138
138
|
"yargs": "^17.3.1",
|
|
139
139
|
"yargs-promise": "^1.1.0"
|
|
140
140
|
},
|
|
141
141
|
"devDependencies": {
|
|
142
|
-
"aegir": "^37.0
|
|
142
|
+
"aegir": "^37.2.0",
|
|
143
143
|
"sinon": "^14.0.0"
|
|
144
144
|
}
|
|
145
145
|
}
|