|
39 | 39 | "sourceType": "module"
|
40 | 40 | }
|
41 | 41 | },
|
| 42 | + "release": { |
| 43 | + "branches": [ |
| 44 | + "main" |
| 45 | + ], |
| 46 | + "plugins": [ |
| 47 | + [ |
| 48 | + "@semantic-release/commit-analyzer", |
| 49 | + { |
| 50 | + "preset": "conventionalcommits", |
| 51 | + "releaseRules": [ |
| 52 | + { |
| 53 | + "breaking": true, |
| 54 | + "release": "major" |
| 55 | + }, |
| 56 | + { |
| 57 | + "revert": true, |
| 58 | + "release": "patch" |
| 59 | + }, |
| 60 | + { |
| 61 | + "type": "feat", |
| 62 | + "release": "minor" |
| 63 | + }, |
| 64 | + { |
| 65 | + "type": "fix", |
| 66 | + "release": "patch" |
| 67 | + }, |
| 68 | + { |
| 69 | + "type": "docs", |
| 70 | + "release": "patch" |
| 71 | + }, |
| 72 | + { |
| 73 | + "type": "test", |
| 74 | + "release": "patch" |
| 75 | + }, |
| 76 | + { |
| 77 | + "type": "deps", |
| 78 | + "release": "patch" |
| 79 | + }, |
| 80 | + { |
| 81 | + "scope": "no-release", |
| 82 | + "release": false |
| 83 | + } |
| 84 | + ] |
| 85 | + } |
| 86 | + ], |
| 87 | + [ |
| 88 | + "@semantic-release/release-notes-generator", |
| 89 | + { |
| 90 | + "preset": "conventionalcommits", |
| 91 | + "presetConfig": { |
| 92 | + "types": [ |
| 93 | + { |
| 94 | + "type": "feat", |
| 95 | + "section": "Features" |
| 96 | + }, |
| 97 | + { |
| 98 | + "type": "fix", |
| 99 | + "section": "Bug Fixes" |
| 100 | + }, |
| 101 | + { |
| 102 | + "type": "chore", |
| 103 | + "section": "Trivial Changes" |
| 104 | + }, |
| 105 | + { |
| 106 | + "type": "docs", |
| 107 | + "section": "Documentation" |
| 108 | + }, |
| 109 | + { |
| 110 | + "type": "deps", |
| 111 | + "section": "Dependencies" |
| 112 | + }, |
| 113 | + { |
| 114 | + "type": "test", |
| 115 | + "section": "Tests" |
| 116 | + } |
| 117 | + ] |
| 118 | + } |
| 119 | + } |
| 120 | + ], |
| 121 | + "@semantic-release/changelog", |
| 122 | + "@semantic-release/npm", |
| 123 | + "@semantic-release/github", |
| 124 | + "@semantic-release/git" |
| 125 | + ] |
| 126 | + }, |
42 | 127 | "scripts": {
|
43 | 128 | "clean": "aegir clean",
|
44 | 129 | "lint": "aegir lint",
|
|
51 | 136 | },
|
52 | 137 | "dependencies": {
|
53 | 138 | "@libp2p/daemon-protocol": "^6.0.0",
|
54 |
| - "@libp2p/interface": "^2.0.0", |
55 |
| - "@libp2p/logger": "^5.0.0", |
56 |
| - "@libp2p/peer-id": "^5.0.0", |
57 |
| - "@libp2p/tcp": "^10.0.0", |
58 |
| - "@multiformats/multiaddr": "^12.1.14", |
59 |
| - "it-protobuf-stream": "^1.1.2", |
60 |
| - "multiformats": "^13.0.1" |
| 139 | + "@libp2p/interface": "^2.2.0", |
| 140 | + "@libp2p/logger": "^5.1.3", |
| 141 | + "@libp2p/peer-id": "^5.0.7", |
| 142 | + "@libp2p/tcp": "^10.0.11", |
| 143 | + "@multiformats/multiaddr": "^12.3.1", |
| 144 | + "it-protobuf-stream": "^1.1.5", |
| 145 | + "multiformats": "^13.3.1" |
61 | 146 | },
|
62 | 147 | "devDependencies": {
|
63 |
| - "@chainsafe/libp2p-gossipsub": "^14.0.0", |
| 148 | + "@chainsafe/libp2p-gossipsub": "^14.1.0", |
64 | 149 | "@libp2p/daemon-server": "^7.0.0",
|
65 |
| - "@libp2p/interface-compliance-tests": "^6.0.0", |
| 150 | + "@libp2p/interface-compliance-tests": "^6.1.8", |
66 | 151 | "@libp2p/kad-dht": "^14.1.0",
|
67 | 152 | "aegir": "^45.0.1",
|
68 |
| - "it-all": "^3.0.4", |
| 153 | + "it-all": "^3.0.6", |
69 | 154 | "it-pipe": "^3.0.1",
|
70 | 155 | "sinon": "^19.0.2",
|
71 | 156 | "sinon-ts": "^2.0.0",
|
72 | 157 | "uint8arraylist": "^2.4.8",
|
73 |
| - "uint8arrays": "^5.0.1" |
| 158 | + "uint8arrays": "^5.1.0" |
74 | 159 | }
|
75 | 160 | }
|
0 commit comments