@libp2p/daemon-server 7.0.2 → 7.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 +16 -106
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@libp2p/daemon-server",
3
- "version": "7.0.2",
3
+ "version": "7.0.4",
4
4
  "description": "API server for libp2p-daemon instances",
5
5
  "license": "Apache-2.0 OR MIT",
6
6
  "homepage": "https://github.com/libp2p/js-libp2p-daemon/tree/main/packages/libp2p-daemon-server#readme",
@@ -37,96 +37,7 @@
37
37
  "parserOptions": {
38
38
  "project": true,
39
39
  "sourceType": "module"
40
- },
41
- "ignorePatterns": [
42
- "*.d.ts",
43
- "src/profocol/index.js"
44
- ]
45
- },
46
- "release": {
47
- "branches": [
48
- "main"
49
- ],
50
- "plugins": [
51
- [
52
- "@semantic-release/commit-analyzer",
53
- {
54
- "preset": "conventionalcommits",
55
- "releaseRules": [
56
- {
57
- "breaking": true,
58
- "release": "major"
59
- },
60
- {
61
- "revert": true,
62
- "release": "patch"
63
- },
64
- {
65
- "type": "feat",
66
- "release": "minor"
67
- },
68
- {
69
- "type": "fix",
70
- "release": "patch"
71
- },
72
- {
73
- "type": "docs",
74
- "release": "patch"
75
- },
76
- {
77
- "type": "test",
78
- "release": "patch"
79
- },
80
- {
81
- "type": "deps",
82
- "release": "patch"
83
- },
84
- {
85
- "scope": "no-release",
86
- "release": false
87
- }
88
- ]
89
- }
90
- ],
91
- [
92
- "@semantic-release/release-notes-generator",
93
- {
94
- "preset": "conventionalcommits",
95
- "presetConfig": {
96
- "types": [
97
- {
98
- "type": "feat",
99
- "section": "Features"
100
- },
101
- {
102
- "type": "fix",
103
- "section": "Bug Fixes"
104
- },
105
- {
106
- "type": "chore",
107
- "section": "Trivial Changes"
108
- },
109
- {
110
- "type": "docs",
111
- "section": "Documentation"
112
- },
113
- {
114
- "type": "deps",
115
- "section": "Dependencies"
116
- },
117
- {
118
- "type": "test",
119
- "section": "Tests"
120
- }
121
- ]
122
- }
123
- }
124
- ],
125
- "@semantic-release/changelog",
126
- "@semantic-release/npm",
127
- "@semantic-release/github",
128
- "@semantic-release/git"
129
- ]
40
+ }
130
41
  },
131
42
  "scripts": {
132
43
  "clean": "aegir clean",
@@ -135,29 +46,28 @@
135
46
  "build": "aegir build",
136
47
  "pretest": "npm run build",
137
48
  "test": "aegir test -t node",
138
- "test:node": "aegir test -t node",
139
- "release": "aegir release"
49
+ "test:node": "aegir test -t node"
140
50
  },
141
51
  "dependencies": {
142
- "@chainsafe/libp2p-gossipsub": "^11.0.0",
52
+ "@chainsafe/libp2p-gossipsub": "^11.2.1",
143
53
  "@libp2p/daemon-protocol": "^6.0.0",
144
- "@libp2p/interface": "^1.0.0",
145
- "@libp2p/kad-dht": "^11.0.0",
146
- "@libp2p/logger": "^4.0.0",
147
- "@libp2p/peer-id": "^4.0.0",
148
- "@libp2p/tcp": "^9.0.0",
149
- "@multiformats/multiaddr": "^12.1.3",
150
- "it-drain": "^3.0.2",
151
- "it-length-prefixed": "^9.0.1",
152
- "it-length-prefixed-stream": "^1.1.4",
54
+ "@libp2p/interface": "^1.1.2",
55
+ "@libp2p/kad-dht": "^12.0.5",
56
+ "@libp2p/logger": "^4.0.5",
57
+ "@libp2p/peer-id": "^4.0.5",
58
+ "@libp2p/tcp": "^9.0.13",
59
+ "@multiformats/multiaddr": "^12.1.14",
60
+ "it-drain": "^3.0.5",
61
+ "it-length-prefixed": "^9.0.4",
62
+ "it-length-prefixed-stream": "^1.1.6",
153
63
  "it-pipe": "^3.0.1",
154
- "it-protobuf-stream": "^1.1.1",
155
- "it-pushable": "^3.2.0",
64
+ "it-protobuf-stream": "^1.1.2",
65
+ "it-pushable": "^3.2.3",
156
66
  "multiformats": "^13.0.1",
157
67
  "uint8arrays": "^5.0.1"
158
68
  },
159
69
  "devDependencies": {
160
- "aegir": "^41.1.6",
70
+ "aegir": "^42.2.3",
161
71
  "sinon-ts": "^2.0.0"
162
72
  }
163
73
  }