@libp2p/daemon-client 8.0.2 → 8.0.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (1) hide show
  1. package/package.json +15 -101
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@libp2p/daemon-client",
3
- "version": "8.0.2",
3
+ "version": "8.0.4",
4
4
  "description": "libp2p-daemon client implementation",
5
5
  "license": "Apache-2.0 OR MIT",
6
6
  "homepage": "https://github.com/libp2p/js-libp2p-daemon/tree/main/packages/libp2p-daemon-client#readme",
@@ -39,91 +39,6 @@
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
- },
127
42
  "scripts": {
128
43
  "clean": "aegir clean",
129
44
  "lint": "aegir lint",
@@ -131,30 +46,29 @@
131
46
  "build": "aegir build",
132
47
  "pretest": "npm run build",
133
48
  "test": "aegir test -t node",
134
- "test:node": "aegir test -t node",
135
- "release": "aegir release"
49
+ "test:node": "aegir test -t node"
136
50
  },
137
51
  "dependencies": {
138
- "@chainsafe/libp2p-gossipsub": "^11.0.0",
139
52
  "@libp2p/daemon-protocol": "^6.0.0",
140
- "@libp2p/interface": "^1.0.0",
141
- "@libp2p/kad-dht": "^11.0.0",
142
- "@libp2p/logger": "^4.0.0",
143
- "@libp2p/peer-id": "^4.0.0",
144
- "@libp2p/tcp": "^9.0.0",
145
- "@multiformats/multiaddr": "^12.1.3",
146
- "it-protobuf-stream": "^1.1.1",
147
- "multiformats": "^13.0.1",
148
- "uint8arraylist": "^2.4.3"
53
+ "@libp2p/interface": "^1.1.2",
54
+ "@libp2p/logger": "^4.0.5",
55
+ "@libp2p/peer-id": "^4.0.5",
56
+ "@libp2p/tcp": "^9.0.13",
57
+ "@multiformats/multiaddr": "^12.1.14",
58
+ "it-protobuf-stream": "^1.1.2",
59
+ "multiformats": "^13.0.1"
149
60
  },
150
61
  "devDependencies": {
62
+ "@chainsafe/libp2p-gossipsub": "^11.2.1",
151
63
  "@libp2p/daemon-server": "^7.0.0",
152
- "@libp2p/interface-compliance-tests": "^5.0.0",
153
- "aegir": "^41.1.6",
154
- "it-all": "^3.0.1",
64
+ "@libp2p/interface-compliance-tests": "^5.2.0",
65
+ "@libp2p/kad-dht": "^12.0.5",
66
+ "aegir": "^42.2.3",
67
+ "it-all": "^3.0.4",
155
68
  "it-pipe": "^3.0.1",
156
69
  "sinon": "^17.0.1",
157
70
  "sinon-ts": "^2.0.0",
71
+ "uint8arraylist": "^2.4.8",
158
72
  "uint8arrays": "^5.0.1"
159
73
  }
160
74
  }