Skip to content

Commit cf72039

Browse files
authored
chore: update homepages (#94)
Updates homepages and links
1 parent 592ac08 commit cf72039

File tree

6 files changed

+19
-10
lines changed

6 files changed

+19
-10
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,8 +56,8 @@ Feel free to jump directly into the examples, however going through the followin
5656

5757
#### Other examples
5858

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

6262
#### libp2p in the Browser
6363

examples/js-libp2p-example-browser-pubsub/package.json

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,15 @@
22
"name": "@libp2p/example-browser-pubsub",
33
"version": "1.0.0",
44
"description": "How to use libp2p pubsub in browsers",
5+
"license": "Apache-2.0 OR MIT",
6+
"homepage": "https://github.com/libp2p/js-libp2p-example-browser-pubsub#readme",
7+
"repository": {
8+
"type": "git",
9+
"url": "git+https://github.com/libp2p/js-libp2p-examples.git"
10+
},
11+
"bugs": {
12+
"url": "https://github.com/libp2p/js-libp2p-examples/issues"
13+
},
514
"type": "module",
615
"scripts": {
716
"start": "vite",
@@ -22,7 +31,7 @@
2231
"@libp2p/webrtc": "^4.0.5",
2332
"@libp2p/websockets": "^8.0.4",
2433
"@multiformats/multiaddr": "^12.1.11",
25-
"libp2p": "^1.0.5",
34+
"libp2p": "^1.0.8",
2635
"vite": "^5.0.4"
2736
},
2837
"devDependencies": {

examples/js-libp2p-example-chat/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"version": "0.0.0",
44
"description": "An example chat app using libp2p",
55
"license": "Apache-2.0 OR MIT",
6-
"homepage": "https://github.com/libp2p/js-libp2p/tree/master/examples/chat#readme",
6+
"homepage": "https://github.com/libp2p/js-libp2p-example-chat#readme",
77
"repository": {
88
"type": "git",
99
"url": "git+https://github.com/libp2p/js-libp2p-examples.git"
@@ -26,7 +26,7 @@
2626
"it-length-prefixed": "^9.0.1",
2727
"it-map": "^3.0.3",
2828
"it-pipe": "^3.0.1",
29-
"libp2p": "^1.0.5",
29+
"libp2p": "^1.0.8",
3030
"p-defer": "^4.0.0",
3131
"uint8arrays": "^4.0.6"
3232
},

examples/js-libp2p-example-circuit-relay/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"version": "0.0.0",
44
"description": "How to use Circuit Relay to connect two nodes",
55
"license": "Apache-2.0 OR MIT",
6-
"homepage": "https://github.com/libp2p/js-libp2p-examples/tree/master/examples/js-libp2p-example-circuit-relay#readme",
6+
"homepage": "https://github.com/libp2p/js-libp2p-example-circuit-relay#readme",
77
"repository": {
88
"type": "git",
99
"url": "git+https://github.com/libp2p/js-libp2p-examples.git"
@@ -22,7 +22,7 @@
2222
"@libp2p/identify": "^1.0.3",
2323
"@libp2p/websockets": "^8.0.4",
2424
"@multiformats/multiaddr": "^12.1.11",
25-
"libp2p": "^1.0.5"
25+
"libp2p": "^1.0.8 "
2626
},
2727
"devDependencies": {
2828
"test-ipfs-example": "^1.1.0"

examples/js-libp2p-example-connection-encryption/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"version": "0.0.0",
44
"description": "An example of how to configure connection encryption",
55
"license": "Apache-2.0 OR MIT",
6-
"homepage": "https://github.com/libp2p/js-libp2p-examples/tree/master/examples/js-libp2p-example-connection-encryption#readme",
6+
"homepage": "https://github.com/libp2p/js-libp2p-example-connection-encryption#readme",
77
"repository": {
88
"type": "git",
99
"url": "git+https://github.com/libp2p/js-libp2p-examples.git"
@@ -21,7 +21,7 @@
2121
"@libp2p/plaintext": "^1.0.4",
2222
"@libp2p/tcp": "^9.0.4",
2323
"it-pipe": "^3.0.1",
24-
"libp2p": "^1.0.5",
24+
"libp2p": "^1.0.8",
2525
"uint8arrays": "^4.0.6"
2626
},
2727
"devDependencies": {

examples/js-libp2p-example-custom-protocols/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"version": "0.0.0",
44
"description": "How to create custom protocols for your app",
55
"license": "Apache-2.0 OR MIT",
6-
"homepage": "https://github.com/libp2p/js-libp2p-examples/tree/main/examples/js-libp2p-example-custom-protocols#readme",
6+
"homepage": "https://github.com/libp2p/js-libp2p-example-custom-protocols#readme",
77
"repository": {
88
"type": "git",
99
"url": "git+https://github.com/libp2p/js-libp2p-examples.git"

0 commit comments

Comments
 (0)