Use scoped libp2p package after publishing to gitea (#309)

This commit is contained in:
Nabarun Gogoi 2023-02-01 11:30:11 +05:30 committed by Ashwin Phatak
parent cc445d5caf
commit 453ee6a473
3 changed files with 3 additions and 3 deletions

View File

@ -27,6 +27,7 @@
"relay-node": "node dist/relay.js" "relay-node": "node dist/relay.js"
}, },
"dependencies": { "dependencies": {
"@cerc-io/libp2p": "0.42.2-laconic-0.1.0",
"@chainsafe/libp2p-noise": "^11.0.0", "@chainsafe/libp2p-noise": "^11.0.0",
"@libp2p/floodsub": "^6.0.0", "@libp2p/floodsub": "^6.0.0",
"@libp2p/mplex": "^7.1.1", "@libp2p/mplex": "^7.1.1",
@ -39,7 +40,6 @@
"it-map": "^2.0.0", "it-map": "^2.0.0",
"it-pipe": "^2.0.5", "it-pipe": "^2.0.5",
"it-pushable": "^3.1.2", "it-pushable": "^3.1.2",
"libp2p": "^0.42.2",
"node-pre-gyp": "^0.13.0", "node-pre-gyp": "^0.13.0",
"uint8arrays": "^4.0.3", "uint8arrays": "^4.0.3",
"wrtc": "^0.4.7", "wrtc": "^0.4.7",

View File

@ -2,7 +2,7 @@
// Copyright 2022 Vulcanize, Inc. // Copyright 2022 Vulcanize, Inc.
// //
import { createLibp2p, Libp2p } from 'libp2p'; import { createLibp2p, Libp2p } from '@cerc-io/libp2p';
// For nodejs. // For nodejs.
import wrtc from 'wrtc'; import wrtc from 'wrtc';
import assert from 'assert'; import assert from 'assert';

View File

@ -2,7 +2,7 @@
// Copyright 2022 Vulcanize, Inc. // Copyright 2022 Vulcanize, Inc.
// //
import { Libp2p, createLibp2p } from 'libp2p'; import { Libp2p, createLibp2p } from '@cerc-io/libp2p';
import wrtc from 'wrtc'; import wrtc from 'wrtc';
import { hideBin } from 'yargs/helpers'; import { hideBin } from 'yargs/helpers';
import yargs from 'yargs'; import yargs from 'yargs';