@helia/strings 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
@@ -72,8 +72,8 @@ Loading this module through a script tag will make its exports available as `Hel
72
72
 
73
73
  Licensed under either of
74
74
 
75
- - Apache 2.0, ([LICENSE-APACHE](LICENSE-APACHE) / <http://www.apache.org/licenses/LICENSE-2.0>)
76
- - MIT ([LICENSE-MIT](LICENSE-MIT) / <http://opensource.org/licenses/MIT>)
75
+ - Apache 2.0, ([LICENSE-APACHE](https://github.com/ipfs/helia/blob/main/packages/strings/LICENSE-APACHE) / <http://www.apache.org/licenses/LICENSE-2.0>)
76
+ - MIT ([LICENSE-MIT](https://github.com/ipfs/helia/blob/main/packages/strings/LICENSE-MIT) / <http://opensource.org/licenses/MIT>)
77
77
 
78
78
  # Contribute
79
79
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@helia/strings",
3
- "version": "4.0.1",
3
+ "version": "4.0.2",
4
4
  "description": "Add/get IPLD blocks containing strings with your Helia node",
5
5
  "license": "Apache-2.0 OR MIT",
6
6
  "homepage": "https://github.com/ipfs/helia/tree/main/packages/strings#readme",
@@ -40,91 +40,6 @@
40
40
  "package": true
41
41
  }
42
42
  },
43
- "release": {
44
- "branches": [
45
- "main"
46
- ],
47
- "plugins": [
48
- [
49
- "@semantic-release/commit-analyzer",
50
- {
51
- "preset": "conventionalcommits",
52
- "releaseRules": [
53
- {
54
- "breaking": true,
55
- "release": "major"
56
- },
57
- {
58
- "revert": true,
59
- "release": "patch"
60
- },
61
- {
62
- "type": "feat",
63
- "release": "minor"
64
- },
65
- {
66
- "type": "fix",
67
- "release": "patch"
68
- },
69
- {
70
- "type": "docs",
71
- "release": "patch"
72
- },
73
- {
74
- "type": "test",
75
- "release": "patch"
76
- },
77
- {
78
- "type": "deps",
79
- "release": "patch"
80
- },
81
- {
82
- "scope": "no-release",
83
- "release": false
84
- }
85
- ]
86
- }
87
- ],
88
- [
89
- "@semantic-release/release-notes-generator",
90
- {
91
- "preset": "conventionalcommits",
92
- "presetConfig": {
93
- "types": [
94
- {
95
- "type": "feat",
96
- "section": "Features"
97
- },
98
- {
99
- "type": "fix",
100
- "section": "Bug Fixes"
101
- },
102
- {
103
- "type": "chore",
104
- "section": "Trivial Changes"
105
- },
106
- {
107
- "type": "docs",
108
- "section": "Documentation"
109
- },
110
- {
111
- "type": "deps",
112
- "section": "Dependencies"
113
- },
114
- {
115
- "type": "test",
116
- "section": "Tests"
117
- }
118
- ]
119
- }
120
- }
121
- ],
122
- "@semantic-release/changelog",
123
- "@semantic-release/npm",
124
- "@semantic-release/github",
125
- "@semantic-release/git"
126
- ]
127
- },
128
43
  "scripts": {
129
44
  "clean": "aegir clean",
130
45
  "lint": "aegir lint",
@@ -138,20 +53,19 @@
138
53
  "test:firefox": "aegir test -t browser -- --browser firefox",
139
54
  "test:firefox-webworker": "aegir test -t webworker -- --browser firefox",
140
55
  "test:node": "aegir test -t node --cov",
141
- "test:electron-main": "aegir test -t electron-main",
142
- "release": "aegir release"
56
+ "test:electron-main": "aegir test -t electron-main"
143
57
  },
144
58
  "dependencies": {
145
- "@helia/interface": "^5.1.0",
146
- "@libp2p/interface": "^2.0.0",
147
- "interface-blockstore": "^5.2.10",
148
- "multiformats": "^13.1.0",
149
- "progress-events": "^1.0.0",
150
- "uint8arrays": "^5.0.2"
59
+ "@helia/interface": "^5.2.0",
60
+ "@libp2p/interface": "^2.2.1",
61
+ "interface-blockstore": "^5.3.1",
62
+ "multiformats": "^13.3.1",
63
+ "progress-events": "^1.0.1",
64
+ "uint8arrays": "^5.1.0"
151
65
  },
152
66
  "devDependencies": {
153
- "aegir": "^45.0.1",
154
- "blockstore-core": "^5.0.0"
67
+ "aegir": "^45.0.6",
68
+ "blockstore-core": "^5.0.2"
155
69
  },
156
70
  "sideEffects": false
157
71
  }
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