Skip to content

Commit

Permalink
github instead of npm, use current package name
Browse files Browse the repository at this point in the history
  • Loading branch information
chrypnotoad committed Nov 11, 2024
1 parent bd8ca6c commit 8be2e1e
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 17 deletions.
20 changes: 10 additions & 10 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 5 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "@shardeum-foundation/archiver-discovery",
"name": "@shardus/archiver-discovery",
"version": "1.1.0",
"description": "Archiver sudo auto discovery module",
"main": "./dist/src/index.js",
Expand All @@ -24,15 +24,15 @@
},
"repository": {
"type": "git",
"url": "https://gitlab.com/shardeum/archiver-discovery.git"
"url": "https://github.com/shardeum/lib-archiver-discovery"
},
"publishConfig": {
"access": "public"
},
"bugs": {
"url": "https://gitlab.com/shardus/archiver-discovery/issues"
"url": "https://github.com/shardeum/lib-archiver-discovery/issues"
},
"homepage": "https://gitlab.com/shardus/archiver-discovery#readme",
"homepage": "https://github.com/shardeum/lib-archiver-discovery#readme",
"devDependencies": {
"@types/jest": "29.5.0",
"@types/node": "18.16.1",
Expand All @@ -48,7 +48,7 @@
"typescript": "5.0.2"
},
"dependencies": {
"@shardeum-foundation/crypto-utils": "4.1.3",
"@shardus/crypto-utils": "git+https://github.com/shardeum/lib-crypto-utils#v4.1.3",
"axios": "1.6.1",
"gts": "3.1.1"
},
Expand Down
2 changes: 1 addition & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import * as crypto from '@shardeum-foundation/crypto-utils'
import * as crypto from '@shardus/crypto-utils'
import { AxiosRequestConfig } from 'axios'
import { readConfigFromFile, removeDuplicateArchiversByPubKey, sanitizeArchiverList } from './helpers'
import {
Expand Down
2 changes: 1 addition & 1 deletion src/types.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { Signature } from '@shardeum-foundation/crypto-utils'
import { Signature } from '@shardus/crypto-utils'

export interface Archiver {
ip: string
Expand Down

0 comments on commit 8be2e1e

Please sign in to comment.