@helia/dag-cbor 4.0.1 → 4.0.2

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 (3) hide show
  1. package/README.md +2 -2
  2. package/package.json +10 -96
  3. package/LICENSE +0 -4
package/README.md CHANGED
@@ -75,8 +75,8 @@ Loading this module through a script tag will make its exports available as `Hel
75
75
 
76
76
  Licensed under either of
77
77
 
78
- - Apache 2.0, ([LICENSE-APACHE](LICENSE-APACHE) / <http://www.apache.org/licenses/LICENSE-2.0>)
79
- - MIT ([LICENSE-MIT](LICENSE-MIT) / <http://opensource.org/licenses/MIT>)
78
+ - Apache 2.0, ([LICENSE-APACHE](https://github.com/ipfs/helia/blob/main/packages/dag-cbor/LICENSE-APACHE) / <http://www.apache.org/licenses/LICENSE-2.0>)
79
+ - MIT ([LICENSE-MIT](https://github.com/ipfs/helia/blob/main/packages/dag-cbor/LICENSE-MIT) / <http://opensource.org/licenses/MIT>)
80
80
 
81
81
  # Contribute
82
82
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@helia/dag-cbor",
3
- "version": "4.0.1",
3
+ "version": "4.0.2",
4
4
  "description": "Add/get IPLD blocks containing dag-cbor with your Helia node",
5
5
  "license": "Apache-2.0 OR MIT",
6
6
  "homepage": "https://github.com/ipfs/helia/tree/main/packages/dag-cbor#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",
@@ -137,20 +52,19 @@
137
52
  "test:firefox": "aegir test -t browser -- --browser firefox",
138
53
  "test:firefox-webworker": "aegir test -t webworker -- --browser firefox",
139
54
  "test:node": "aegir test -t node --cov",
140
- "test:electron-main": "aegir test -t electron-main",
141
- "release": "aegir release"
55
+ "test:electron-main": "aegir test -t electron-main"
142
56
  },
143
57
  "dependencies": {
144
- "@helia/interface": "^5.1.0",
145
- "@ipld/dag-cbor": "^9.2.0",
146
- "@libp2p/interface": "^2.0.0",
147
- "interface-blockstore": "^5.2.10",
148
- "multiformats": "^13.1.0",
149
- "progress-events": "^1.0.0"
58
+ "@helia/interface": "^5.2.0",
59
+ "@ipld/dag-cbor": "^9.2.2",
60
+ "@libp2p/interface": "^2.2.1",
61
+ "interface-blockstore": "^5.3.1",
62
+ "multiformats": "^13.3.1",
63
+ "progress-events": "^1.0.1"
150
64
  },
151
65
  "devDependencies": {
152
- "aegir": "^45.0.1",
153
- "blockstore-core": "^5.0.0"
66
+ "aegir": "^45.0.6",
67
+ "blockstore-core": "^5.0.2"
154
68
  },
155
69
  "sideEffects": false
156
70
  }
package/LICENSE DELETED
@@ -1,4 +0,0 @@
1
- This project is dual licensed under MIT and Apache-2.0.
2
-
3
- MIT: https://www.opensource.org/licenses/mit
4
- Apache-2.0: https://www.apache.org/licenses/license-2.0