|
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 | + }, |
42 | 127 | "scripts": {
|
43 | 128 | "test": "aegir test",
|
44 | 129 | "test:node": "aegir test -t node --cov",
|
|
47 | 132 | "build": "aegir build",
|
48 | 133 | "clean": "aegir clean",
|
49 | 134 | "lint": "aegir lint",
|
50 |
| - "dep-check": "aegir dep-check" |
| 135 | + "dep-check": "aegir dep-check", |
| 136 | + "release": "aegir release" |
51 | 137 | },
|
52 | 138 | "dependencies": {
|
53 |
| - "@ipld/dag-cbor": "^9.2.0", |
54 |
| - "@ipld/dag-json": "^10.2.0", |
55 |
| - "@ipld/dag-pb": "^4.1.0", |
| 139 | + "@ipld/dag-cbor": "^9.2.1", |
| 140 | + "@ipld/dag-json": "^10.2.2", |
| 141 | + "@ipld/dag-pb": "^4.1.2", |
56 | 142 | "@multiformats/murmur3": "^2.1.8",
|
57 | 143 | "err-code": "^3.0.1",
|
58 | 144 | "hamt-sharding": "^3.0.6",
|
59 |
| - "interface-blockstore": "^5.2.10", |
| 145 | + "interface-blockstore": "^5.3.0", |
60 | 146 | "ipfs-unixfs": "^11.0.0",
|
61 |
| - "it-filter": "^3.0.4", |
62 |
| - "it-last": "^3.0.4", |
63 |
| - "it-map": "^3.0.5", |
64 |
| - "it-parallel": "^3.0.6", |
| 147 | + "it-filter": "^3.1.1", |
| 148 | + "it-last": "^3.0.6", |
| 149 | + "it-map": "^3.1.1", |
| 150 | + "it-parallel": "^3.0.8", |
65 | 151 | "it-pipe": "^3.0.1",
|
66 | 152 | "it-pushable": "^3.2.3",
|
67 |
| - "multiformats": "^13.1.0", |
| 153 | + "multiformats": "^13.2.3", |
68 | 154 | "p-queue": "^8.0.1",
|
69 |
| - "progress-events": "^1.0.0" |
| 155 | + "progress-events": "^1.0.1" |
70 | 156 | },
|
71 | 157 | "devDependencies": {
|
72 |
| - "@types/readable-stream": "^4.0.11", |
| 158 | + "@types/readable-stream": "^4.0.15", |
73 | 159 | "@types/sinon": "^17.0.3",
|
74 |
| - "aegir": "^42.2.5", |
75 |
| - "blockstore-core": "^4.4.0", |
| 160 | + "aegir": "^44.1.1", |
| 161 | + "blockstore-core": "^4.4.1", |
76 | 162 | "delay": "^6.0.0",
|
77 | 163 | "ipfs-unixfs-importer": "^15.0.0",
|
78 | 164 | "iso-random-stream": "^2.0.2",
|
79 |
| - "it-all": "^3.0.4", |
80 |
| - "it-buffer-stream": "^3.0.6", |
81 |
| - "it-drain": "^3.0.5", |
82 |
| - "it-first": "^3.0.4", |
83 |
| - "it-to-buffer": "^4.0.5", |
| 165 | + "it-all": "^3.0.6", |
| 166 | + "it-buffer-stream": "^3.0.8", |
| 167 | + "it-drain": "^3.0.7", |
| 168 | + "it-first": "^3.0.6", |
| 169 | + "it-to-buffer": "^4.0.7", |
84 | 170 | "merge-options": "^3.0.4",
|
85 | 171 | "readable-stream": "^4.5.2",
|
86 | 172 | "sinon": "^17.0.1",
|
87 |
| - "uint8arrays": "^5.0.3", |
| 173 | + "uint8arrays": "^5.1.0", |
88 | 174 | "wherearewe": "^2.0.1"
|
89 | 175 | },
|
90 | 176 | "browser": {
|
|
0 commit comments