Skip to content

Commit

Permalink
chore: update homepages (#94)
Browse files Browse the repository at this point in the history
Updates homepages and links
  • Loading branch information
achingbrain committed Dec 4, 2023
1 parent 592ac08 commit cf72039
Show file tree
Hide file tree
Showing 6 changed files with 19 additions and 10 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,8 +56,8 @@ Feel free to jump directly into the examples, however going through the followin

#### Other examples

- [Chat](./examples/js-libp2p-example-chat) - a simple chat app
- [Browser Pub/Sub](./examples/js-libp2p-example-browser-pubsub) - Using Pub/Sub between browsers
- [Chat](https://github.com/libp2p/js-libp2p-example-chat) - a simple chat app
- [Browser Pub/Sub](https://github.com/libp2p/js-libp2p-example-browser-pubsub) - Using Pub/Sub between browsers

#### libp2p in the Browser

Expand Down
11 changes: 10 additions & 1 deletion examples/js-libp2p-example-browser-pubsub/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,15 @@
"name": "@libp2p/example-browser-pubsub",
"version": "1.0.0",
"description": "How to use libp2p pubsub in browsers",
"license": "Apache-2.0 OR MIT",
"homepage": "https://github.com/libp2p/js-libp2p-example-browser-pubsub#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/libp2p/js-libp2p-examples.git"
},
"bugs": {
"url": "https://github.com/libp2p/js-libp2p-examples/issues"
},
"type": "module",
"scripts": {
"start": "vite",
Expand All @@ -22,7 +31,7 @@
"@libp2p/webrtc": "^4.0.5",
"@libp2p/websockets": "^8.0.4",
"@multiformats/multiaddr": "^12.1.11",
"libp2p": "^1.0.5",
"libp2p": "^1.0.8",
"vite": "^5.0.4"
},
"devDependencies": {
Expand Down
4 changes: 2 additions & 2 deletions examples/js-libp2p-example-chat/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"version": "0.0.0",
"description": "An example chat app using libp2p",
"license": "Apache-2.0 OR MIT",
"homepage": "https://github.com/libp2p/js-libp2p/tree/master/examples/chat#readme",
"homepage": "https://github.com/libp2p/js-libp2p-example-chat#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/libp2p/js-libp2p-examples.git"
Expand All @@ -26,7 +26,7 @@
"it-length-prefixed": "^9.0.1",
"it-map": "^3.0.3",
"it-pipe": "^3.0.1",
"libp2p": "^1.0.5",
"libp2p": "^1.0.8",
"p-defer": "^4.0.0",
"uint8arrays": "^4.0.6"
},
Expand Down
4 changes: 2 additions & 2 deletions examples/js-libp2p-example-circuit-relay/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"version": "0.0.0",
"description": "How to use Circuit Relay to connect two nodes",
"license": "Apache-2.0 OR MIT",
"homepage": "https://github.com/libp2p/js-libp2p-examples/tree/master/examples/js-libp2p-example-circuit-relay#readme",
"homepage": "https://github.com/libp2p/js-libp2p-example-circuit-relay#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/libp2p/js-libp2p-examples.git"
Expand All @@ -22,7 +22,7 @@
"@libp2p/identify": "^1.0.3",
"@libp2p/websockets": "^8.0.4",
"@multiformats/multiaddr": "^12.1.11",
"libp2p": "^1.0.5"
"libp2p": "^1.0.8 "
},
"devDependencies": {
"test-ipfs-example": "^1.1.0"
Expand Down
4 changes: 2 additions & 2 deletions examples/js-libp2p-example-connection-encryption/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"version": "0.0.0",
"description": "An example of how to configure connection encryption",
"license": "Apache-2.0 OR MIT",
"homepage": "https://github.com/libp2p/js-libp2p-examples/tree/master/examples/js-libp2p-example-connection-encryption#readme",
"homepage": "https://github.com/libp2p/js-libp2p-example-connection-encryption#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/libp2p/js-libp2p-examples.git"
Expand All @@ -21,7 +21,7 @@
"@libp2p/plaintext": "^1.0.4",
"@libp2p/tcp": "^9.0.4",
"it-pipe": "^3.0.1",
"libp2p": "^1.0.5",
"libp2p": "^1.0.8",
"uint8arrays": "^4.0.6"
},
"devDependencies": {
Expand Down
2 changes: 1 addition & 1 deletion examples/js-libp2p-example-custom-protocols/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"version": "0.0.0",
"description": "How to create custom protocols for your app",
"license": "Apache-2.0 OR MIT",
"homepage": "https://github.com/libp2p/js-libp2p-examples/tree/main/examples/js-libp2p-example-custom-protocols#readme",
"homepage": "https://github.com/libp2p/js-libp2p-example-custom-protocols#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/libp2p/js-libp2p-examples.git"
Expand Down

0 comments on commit cf72039

Please sign in to comment.