@helia/json 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 +9 -95
  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/json/LICENSE-APACHE) / <http://www.apache.org/licenses/LICENSE-2.0>)
79
+ - MIT ([LICENSE-MIT](https://github.com/ipfs/helia/blob/main/packages/json/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/json",
3
- "version": "4.0.1",
3
+ "version": "4.0.2",
4
4
  "description": "Add/get IPLD blocks containing json with your Helia node",
5
5
  "license": "Apache-2.0 OR MIT",
6
6
  "homepage": "https://github.com/ipfs/helia/tree/main/packages/json#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",
@@ -136,19 +51,18 @@
136
51
  "test:firefox": "aegir test -t browser -- --browser firefox",
137
52
  "test:firefox-webworker": "aegir test -t webworker -- --browser firefox",
138
53
  "test:node": "aegir test -t node --cov",
139
- "test:electron-main": "aegir test -t electron-main",
140
- "release": "aegir release"
54
+ "test:electron-main": "aegir test -t electron-main"
141
55
  },
142
56
  "dependencies": {
143
- "@helia/interface": "^5.1.0",
144
- "@libp2p/interface": "^2.0.0",
145
- "interface-blockstore": "^5.2.10",
146
- "multiformats": "^13.1.0",
147
- "progress-events": "^1.0.0"
57
+ "@helia/interface": "^5.2.0",
58
+ "@libp2p/interface": "^2.2.1",
59
+ "interface-blockstore": "^5.3.1",
60
+ "multiformats": "^13.3.1",
61
+ "progress-events": "^1.0.1"
148
62
  },
149
63
  "devDependencies": {
150
- "aegir": "^45.0.1",
151
- "blockstore-core": "^5.0.0"
64
+ "aegir": "^45.0.6",
65
+ "blockstore-core": "^5.0.2"
152
66
  },
153
67
  "sideEffects": false
154
68
  }
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