This repository has been archived by the owner on Jun 27, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: update interfaces and add types
- Loading branch information
1 parent
a474cf4
commit a5e5191
Showing
5 changed files
with
36 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,16 +4,17 @@ | |
"description": "libp2p-floodsub, also known as pubsub-flood or just dumbsub, this implementation of pubsub focused on delivering an API for Publish/Subscribe, but with no CastTree Forming (it just floods the network).", | ||
"leadMaintainer": "Vasco Santos <[email protected]>", | ||
"main": "src/index.js", | ||
"types": "dist/src/index.d.ts", | ||
"scripts": { | ||
"lint": "aegir lint", | ||
"test": "aegir test", | ||
"test:node": "aegir test -t node", | ||
"test:browser": "aegir test -t browser", | ||
"build": "aegir build --no-types", | ||
"build": "aegir build", | ||
"docs": "aegir-docs", | ||
"release": "aegir release --docs --no-types", | ||
"release-minor": "aegir release --no-types --type minor --docs", | ||
"release-major": "aegir release --no-types --type major --docs", | ||
"release": "aegir release --docs", | ||
"release-minor": "aegir release --type minor --docs", | ||
"release-major": "aegir release --type major --docs", | ||
"coverage": "aegir coverage", | ||
"coverage-publish": "aegir coverage --provider coveralls" | ||
}, | ||
|
@@ -42,15 +43,17 @@ | |
}, | ||
"homepage": "https://github.com/libp2p/js-libp2p-floodsub#readme", | ||
"devDependencies": { | ||
"@types/debug": "^4.1.5", | ||
"aegir": "^33.0.0", | ||
"benchmark": "^2.1.4", | ||
"buffer": "^6.0.3", | ||
"chai": "^4.3.4", | ||
"ipfs-utils": "^6.0.6", | ||
"it-pair": "^1.0.0", | ||
"libp2p": "^0.30.0", | ||
"libp2p-mplex": "^0.10.1", | ||
"libp2p-noise": "^2.0.1", | ||
"libp2p-websockets": "^0.15.4", | ||
"libp2p-websockets": "^0.15.5", | ||
"multiaddr": "^9.0.1", | ||
"os": "^0.1.1", | ||
"p-wait-for": "^3.1.0", | ||
|
@@ -59,7 +62,7 @@ | |
}, | ||
"dependencies": { | ||
"debug": "^4.2.0", | ||
"libp2p-interfaces": "libp2p/js-libp2p-interfaces#chore/update-pubsub-interface", | ||
"libp2p-interfaces": "^0.10.0", | ||
"time-cache": "^0.3.0", | ||
"uint8arrays": "^2.1.4" | ||
}, | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
{ | ||
"extends": "aegir/src/config/tsconfig.aegir.json", | ||
"compilerOptions": { | ||
"outDir": "dist" | ||
}, | ||
"include": [ | ||
"src", | ||
"test" | ||
] | ||
} |