@fireproof/vendor 1.0.1 → 1.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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fireproof/vendor",
3
- "version": "1.0.1",
3
+ "version": "1.0.2",
4
4
  "description": "vendor patch repo to support esm",
5
5
  "type": "module",
6
6
  "main": "index.js",
@@ -1,235 +0,0 @@
1
- {
2
- "name": "@ipld/car",
3
- "version": "5.3.3",
4
- "description": "Content Addressable aRchive format reader and writer",
5
- "author": "Rod <rod@vagg.org> (http://r.va.gg/)",
6
- "license": "Apache-2.0 OR MIT",
7
- "homepage": "https://github.com/ipld/js-car#readme",
8
- "repository": {
9
- "type": "git",
10
- "url": "git+https://github.com/ipld/js-car.git"
11
- },
12
- "bugs": {
13
- "url": "https://github.com/ipld/js-car/issues"
14
- },
15
- "keywords": [
16
- "car",
17
- "ipfs",
18
- "ipld",
19
- "multiformats"
20
- ],
21
- "engines": {
22
- "node": ">=16.0.0",
23
- "npm": ">=7.0.0"
24
- },
25
- "type": "module",
26
- "types": "./dist/src/index.d.ts",
27
- "typesVersions": {
28
- "*": {
29
- "*": [
30
- "*",
31
- "dist/*",
32
- "dist/src/*",
33
- "dist/src/*/index"
34
- ],
35
- "src/*": [
36
- "*",
37
- "dist/*",
38
- "dist/src/*",
39
- "dist/src/*/index"
40
- ]
41
- }
42
- },
43
- "files": [
44
- "src",
45
- "dist",
46
- "!dist/test",
47
- "!**/*.tsbuildinfo"
48
- ],
49
- "exports": {
50
- ".": {
51
- "types": "./dist/src/index.d.ts",
52
- "import": "./src/index.js",
53
- "browser": "./src/index-browser.js"
54
- },
55
- "./buffer-writer": {
56
- "types": "./dist/src/buffer-writer.d.ts",
57
- "import": "./src/buffer-writer.js"
58
- },
59
- "./decoder": {
60
- "types": "./dist/src/decoder.d.ts",
61
- "import": "./src/decoder.js"
62
- },
63
- "./indexed-reader": {
64
- "types": "./dist/src/indexed-reader.d.ts",
65
- "browser": "./src/indexed-reader-browser.js",
66
- "import": "./src/indexed-reader.js"
67
- },
68
- "./indexer": {
69
- "types": "./dist/src/indexer.d.ts",
70
- "import": "./src/indexer.js"
71
- },
72
- "./iterator": {
73
- "types": "./dist/src/iterator.d.ts",
74
- "import": "./src/iterator.js"
75
- },
76
- "./reader": {
77
- "types": "./dist/src/reader.d.ts",
78
- "browser": "./src/reader-browser.js",
79
- "import": "./src/reader.js"
80
- },
81
- "./buffer-reader": {
82
- "types": "./dist/src/buffer-reader-browser.d.ts",
83
- "browser": "./src/buffer-reader-browser.js",
84
- "import": "./src/buffer-reader.js"
85
- },
86
- "./writer": {
87
- "types": "./dist/src/writer.d.ts",
88
- "browser": "./src/writer-browser.js",
89
- "import": "./src/writer.js"
90
- }
91
- },
92
- "eslintConfig": {
93
- "extends": "ipfs",
94
- "parserOptions": {
95
- "sourceType": "module"
96
- }
97
- },
98
- "release": {
99
- "branches": [
100
- "master"
101
- ],
102
- "plugins": [
103
- [
104
- "@semantic-release/commit-analyzer",
105
- {
106
- "preset": "conventionalcommits",
107
- "releaseRules": [
108
- {
109
- "breaking": true,
110
- "release": "major"
111
- },
112
- {
113
- "revert": true,
114
- "release": "patch"
115
- },
116
- {
117
- "type": "feat",
118
- "release": "minor"
119
- },
120
- {
121
- "type": "fix",
122
- "release": "patch"
123
- },
124
- {
125
- "type": "docs",
126
- "release": "patch"
127
- },
128
- {
129
- "type": "test",
130
- "release": "patch"
131
- },
132
- {
133
- "type": "deps",
134
- "release": "patch"
135
- },
136
- {
137
- "scope": "no-release",
138
- "release": false
139
- }
140
- ]
141
- }
142
- ],
143
- [
144
- "@semantic-release/release-notes-generator",
145
- {
146
- "preset": "conventionalcommits",
147
- "presetConfig": {
148
- "types": [
149
- {
150
- "type": "feat",
151
- "section": "Features"
152
- },
153
- {
154
- "type": "fix",
155
- "section": "Bug Fixes"
156
- },
157
- {
158
- "type": "chore",
159
- "section": "Trivial Changes"
160
- },
161
- {
162
- "type": "docs",
163
- "section": "Documentation"
164
- },
165
- {
166
- "type": "deps",
167
- "section": "Dependencies"
168
- },
169
- {
170
- "type": "test",
171
- "section": "Tests"
172
- }
173
- ]
174
- }
175
- }
176
- ],
177
- "@semantic-release/changelog",
178
- "@semantic-release/npm",
179
- "@semantic-release/github",
180
- "@semantic-release/git"
181
- ]
182
- },
183
- "scripts": {
184
- "clean": "aegir clean",
185
- "lint": "aegir lint",
186
- "build": "aegir build",
187
- "build:validator": "npx @ipld/schema to-js src/header.ipldsch > src/header-validator.js",
188
- "release": "aegir release",
189
- "test": "npm run lint && aegir test && npm run test:examples",
190
- "test:node": "aegir test -t node --cov",
191
- "test:chrome": "aegir test -t browser --cov",
192
- "test:chrome-webworker": "aegir test -t webworker",
193
- "test:firefox": "aegir test -t browser -- --browser firefox",
194
- "test:firefox-webworker": "aegir test -t webworker -- --browser firefox",
195
- "test:electron-main": "aegir test -t electron-main",
196
- "test:examples": "npm run test --prefix examples/",
197
- "dep-check": "aegir dep-check",
198
- "coverage": "c8 --reporter=html --reporter=text mocha test/test-*.js && npx st -d coverage -p 8888",
199
- "docs": "jsdoc4readme --readme --description-only src/reader*.js src/indexed-reader.js src/iterator.js src/indexer.js src/writer*.js src/buffer-writer.js src/decoder.js src/buffer-reader*.js"
200
- },
201
- "dependencies": {
202
- "@ipld/dag-cbor": "^9.0.7",
203
- "cborg": "^4.0.5",
204
- "multiformats": "^13.0.0",
205
- "varint": "^6.0.0"
206
- },
207
- "devDependencies": {
208
- "@ipld/dag-pb": "^4.0.7",
209
- "@ipld/garbage": "^6.0.5",
210
- "@types/varint": "^6.0.3",
211
- "aegir": "^45.0.1",
212
- "jsdoc4readme": "^1.4.0"
213
- },
214
- "browser": {
215
- "./src/index.js": "./src/index-browser.js",
216
- "./src/index-reader.js": "./src/index-reader-browser.js",
217
- "./src/reader.js": "./src/reader-browser.js",
218
- "./src/buffer-reader.js": "./src/buffer-reader-browser.js",
219
- "./src/writer.js": "./src/writer-browser.js",
220
- "fs": false,
221
- "util": false,
222
- "stream": false
223
- },
224
- "directories": {
225
- "test": "test"
226
- },
227
- "standard": {
228
- "ignore": [
229
- "dist"
230
- ]
231
- },
232
- "eslintIgnore": [
233
- "src/header-validator.js"
234
- ]
235
- }
@@ -1,171 +0,0 @@
1
- {
2
- "name": "@ipld/dag-cbor",
3
- "version": "9.2.2",
4
- "description": "JS implementation of DAG-CBOR",
5
- "author": "Rod <rod@vagg.org> (http://r.va.gg/)",
6
- "license": "Apache-2.0 OR MIT",
7
- "homepage": "https://github.com/ipld/js-dag-cbor#readme",
8
- "repository": {
9
- "type": "git",
10
- "url": "git+https://github.com/ipld/js-dag-cbor.git"
11
- },
12
- "bugs": {
13
- "url": "https://github.com/ipld/js-dag-cbor/issues"
14
- },
15
- "keywords": [
16
- "ipfs",
17
- "ipld",
18
- "multiformats"
19
- ],
20
- "engines": {
21
- "node": ">=16.0.0",
22
- "npm": ">=7.0.0"
23
- },
24
- "type": "module",
25
- "types": "./dist/src/index.d.ts",
26
- "typesVersions": {
27
- "*": {
28
- "*": [
29
- "*",
30
- "dist/*",
31
- "dist/src/*",
32
- "dist/src/*/index"
33
- ],
34
- "src/*": [
35
- "*",
36
- "dist/*",
37
- "dist/src/*",
38
- "dist/src/*/index"
39
- ]
40
- }
41
- },
42
- "files": [
43
- "src",
44
- "dist",
45
- "!dist/test",
46
- "!**/*.tsbuildinfo"
47
- ],
48
- "exports": {
49
- ".": {
50
- "types": "./dist/src/index.d.ts",
51
- "import": "./src/index.js"
52
- }
53
- },
54
- "eslintConfig": {
55
- "extends": "ipfs",
56
- "parserOptions": {
57
- "sourceType": "module"
58
- },
59
- "ignorePatterns": [
60
- "test/ts-use"
61
- ]
62
- },
63
- "release": {
64
- "branches": [
65
- "master"
66
- ],
67
- "plugins": [
68
- [
69
- "@semantic-release/commit-analyzer",
70
- {
71
- "preset": "conventionalcommits",
72
- "releaseRules": [
73
- {
74
- "breaking": true,
75
- "release": "major"
76
- },
77
- {
78
- "revert": true,
79
- "release": "patch"
80
- },
81
- {
82
- "type": "feat",
83
- "release": "minor"
84
- },
85
- {
86
- "type": "fix",
87
- "release": "patch"
88
- },
89
- {
90
- "type": "docs",
91
- "release": "patch"
92
- },
93
- {
94
- "type": "test",
95
- "release": "patch"
96
- },
97
- {
98
- "type": "deps",
99
- "release": "patch"
100
- },
101
- {
102
- "scope": "no-release",
103
- "release": false
104
- }
105
- ]
106
- }
107
- ],
108
- [
109
- "@semantic-release/release-notes-generator",
110
- {
111
- "preset": "conventionalcommits",
112
- "presetConfig": {
113
- "types": [
114
- {
115
- "type": "feat",
116
- "section": "Features"
117
- },
118
- {
119
- "type": "fix",
120
- "section": "Bug Fixes"
121
- },
122
- {
123
- "type": "chore",
124
- "section": "Trivial Changes"
125
- },
126
- {
127
- "type": "docs",
128
- "section": "Documentation"
129
- },
130
- {
131
- "type": "deps",
132
- "section": "Dependencies"
133
- },
134
- {
135
- "type": "test",
136
- "section": "Tests"
137
- }
138
- ]
139
- }
140
- }
141
- ],
142
- "@semantic-release/changelog",
143
- "@semantic-release/npm",
144
- "@semantic-release/github",
145
- "@semantic-release/git"
146
- ]
147
- },
148
- "scripts": {
149
- "clean": "aegir clean",
150
- "lint": "aegir lint",
151
- "build": "aegir build",
152
- "release": "aegir release",
153
- "test": "npm run lint && aegir test",
154
- "test:ts": "npm run test --prefix test/ts-use",
155
- "test:node": "aegir test -t node --cov",
156
- "test:chrome": "aegir test -t browser --cov",
157
- "test:chrome-webworker": "aegir test -t webworker",
158
- "test:firefox": "aegir test -t browser -- --browser firefox",
159
- "test:firefox-webworker": "aegir test -t webworker -- --browser firefox",
160
- "test:electron-main": "aegir test -t electron-main",
161
- "dep-check": "aegir dep-check"
162
- },
163
- "dependencies": {
164
- "cborg": "^4.0.0",
165
- "multiformats": "^13.1.0"
166
- },
167
- "devDependencies": {
168
- "@ipld/garbage": "^6.0.0",
169
- "aegir": "^45.0.1"
170
- }
171
- }
@@ -1,173 +0,0 @@
1
- {
2
- "name": "@ipld/dag-json",
3
- "version": "10.2.3",
4
- "description": "JS implementation of DAG-JSON",
5
- "author": "Rod <rod@vagg.org> (http://r.va.gg/)",
6
- "license": "Apache-2.0 OR MIT",
7
- "homepage": "https://github.com/ipld/js-dag-json#readme",
8
- "repository": {
9
- "type": "git",
10
- "url": "git+https://github.com/ipld/js-dag-json.git"
11
- },
12
- "bugs": {
13
- "url": "https://github.com/ipld/js-dag-json/issues"
14
- },
15
- "keywords": [
16
- "ipfs",
17
- "ipld",
18
- "multiformats"
19
- ],
20
- "engines": {
21
- "node": ">=16.0.0",
22
- "npm": ">=7.0.0"
23
- },
24
- "type": "module",
25
- "types": "./dist/src/index.d.ts",
26
- "typesVersions": {
27
- "*": {
28
- "*": [
29
- "*",
30
- "dist/*",
31
- "dist/src/*",
32
- "dist/src/*/index"
33
- ],
34
- "src/*": [
35
- "*",
36
- "dist/*",
37
- "dist/src/*",
38
- "dist/src/*/index"
39
- ]
40
- }
41
- },
42
- "files": [
43
- "src",
44
- "dist",
45
- "!dist/test",
46
- "!**/*.tsbuildinfo"
47
- ],
48
- "exports": {
49
- ".": {
50
- "types": "./dist/src/index.d.ts",
51
- "import": "./src/index.js"
52
- }
53
- },
54
- "eslintConfig": {
55
- "extends": "ipfs",
56
- "parserOptions": {
57
- "sourceType": "module"
58
- },
59
- "ignorePatterns": [
60
- "test/ts-use"
61
- ]
62
- },
63
- "release": {
64
- "branches": [
65
- "master"
66
- ],
67
- "plugins": [
68
- [
69
- "@semantic-release/commit-analyzer",
70
- {
71
- "preset": "conventionalcommits",
72
- "releaseRules": [
73
- {
74
- "breaking": true,
75
- "release": "major"
76
- },
77
- {
78
- "revert": true,
79
- "release": "patch"
80
- },
81
- {
82
- "type": "feat",
83
- "release": "minor"
84
- },
85
- {
86
- "type": "fix",
87
- "release": "patch"
88
- },
89
- {
90
- "type": "docs",
91
- "release": "patch"
92
- },
93
- {
94
- "type": "test",
95
- "release": "patch"
96
- },
97
- {
98
- "type": "deps",
99
- "release": "patch"
100
- },
101
- {
102
- "scope": "no-release",
103
- "release": false
104
- }
105
- ]
106
- }
107
- ],
108
- [
109
- "@semantic-release/release-notes-generator",
110
- {
111
- "preset": "conventionalcommits",
112
- "presetConfig": {
113
- "types": [
114
- {
115
- "type": "feat",
116
- "section": "Features"
117
- },
118
- {
119
- "type": "fix",
120
- "section": "Bug Fixes"
121
- },
122
- {
123
- "type": "chore",
124
- "section": "Trivial Changes"
125
- },
126
- {
127
- "type": "docs",
128
- "section": "Documentation"
129
- },
130
- {
131
- "type": "deps",
132
- "section": "Dependencies"
133
- },
134
- {
135
- "type": "test",
136
- "section": "Tests"
137
- }
138
- ]
139
- }
140
- }
141
- ],
142
- "@semantic-release/changelog",
143
- "@semantic-release/npm",
144
- "@semantic-release/github",
145
- "@semantic-release/git"
146
- ]
147
- },
148
- "scripts": {
149
- "clean": "aegir clean",
150
- "lint": "aegir lint",
151
- "build": "aegir build",
152
- "release": "aegir release",
153
- "test": "npm run lint && aegir test",
154
- "test:ts": "npm run test --prefix test/ts-use",
155
- "test:node": "aegir test -t node --cov",
156
- "test:chrome": "aegir test -t browser --cov",
157
- "test:chrome-webworker": "aegir test -t webworker",
158
- "test:firefox": "aegir test -t browser -- --browser firefox",
159
- "test:firefox-webworker": "aegir test -t webworker -- --browser firefox",
160
- "test:electron-main": "aegir test -t electron-main",
161
- "dep-check": "aegir dep-check"
162
- },
163
- "dependencies": {
164
- "cborg": "^4.0.0",
165
- "multiformats": "^13.1.0"
166
- },
167
- "devDependencies": {
168
- "@ipld/garbage": "^6.0.0",
169
- "aegir": "^45.0.7",
170
- "eslint-config-ipfs": "^7.0.6",
171
- "eslint-plugin-n": "^17.14.0"
172
- }
173
- }
@@ -1,173 +0,0 @@
1
- {
2
- "name": "@web3-storage/pail",
3
- "version": "0.6.0",
4
- "description": "DAG based key value store.",
5
- "main": "src/index.js",
6
- "type": "module",
7
- "types": "./dist/src/index.d.ts",
8
- "typesVersions": {
9
- "*": {
10
- "*": [
11
- "dist/*"
12
- ],
13
- "dist/src/index.d.ts": [
14
- "dist/src/index.d.ts"
15
- ],
16
- "api": [
17
- "dist/src/api.d.ts"
18
- ],
19
- "batch": [
20
- "dist/src/batch/index.d.ts"
21
- ],
22
- "batch/api": [
23
- "dist/src/batch/api.d.ts"
24
- ],
25
- "block": [
26
- "dist/src/block.d.ts"
27
- ],
28
- "clock": [
29
- "dist/src/clock/index.d.ts"
30
- ],
31
- "clock/api": [
32
- "dist/src/clock/api.d.ts"
33
- ],
34
- "crdt": [
35
- "dist/src/crdt/index.d.ts"
36
- ],
37
- "crdt/api": [
38
- "dist/src/crdt/api.d.ts"
39
- ],
40
- "crdt/batch": [
41
- "dist/src/crdt/batch/index.d.ts"
42
- ],
43
- "crdt/batch/api": [
44
- "dist/src/crdt/batch/api.d.ts"
45
- ],
46
- "diff": [
47
- "dist/src/diff.d.ts"
48
- ],
49
- "link": [
50
- "dist/src/link.d.ts"
51
- ],
52
- "merge": [
53
- "dist/src/merge.d.ts"
54
- ],
55
- "shard": [
56
- "dist/src/shard.d.ts"
57
- ]
58
- }
59
- },
60
- "exports": {
61
- ".": {
62
- "types": "./dist/src/index.d.ts",
63
- "import": "./src/index.js"
64
- },
65
- "./api": {
66
- "types": "./dist/src/api.d.ts",
67
- "import": "./src/api.js"
68
- },
69
- "./batch": {
70
- "types": "./dist/src/batch/index.d.ts",
71
- "import": "./src/batch/index.js"
72
- },
73
- "./batch/api": {
74
- "types": "./dist/src/batch/api.d.ts",
75
- "import": "./src/batch/api.js"
76
- },
77
- "./block": {
78
- "types": "./dist/src/block.d.ts",
79
- "import": "./src/block.js"
80
- },
81
- "./clock": {
82
- "types": "./dist/src/clock/index.d.ts",
83
- "import": "./src/clock/index.js"
84
- },
85
- "./clock/api": {
86
- "types": "./dist/src/clock/api.d.ts",
87
- "import": "./src/clock/api.js"
88
- },
89
- "./crdt": {
90
- "types": "./dist/src/crdt/index.d.ts",
91
- "import": "./src/crdt/index.js"
92
- },
93
- "./crdt/api": {
94
- "types": "./dist/src/crdt/api.d.ts",
95
- "import": "./src/crdt/api.js"
96
- },
97
- "./crdt/batch": {
98
- "types": "./dist/src/crdt/batch/index.d.ts",
99
- "import": "./src/crdt/batch/index.js"
100
- },
101
- "./crdt/batch/api": {
102
- "types": "./dist/src/crdt/batch/api.d.ts",
103
- "import": "./src/crdt/batch/api.js"
104
- },
105
- "./diff": {
106
- "types": "./dist/src/diff.d.ts",
107
- "import": "./src/diff.js"
108
- },
109
- "./link": {
110
- "types": "./dist/src/link.d.ts",
111
- "import": "./src/link.js"
112
- },
113
- "./merge": {
114
- "types": "./dist/src/merge.d.ts",
115
- "import": "./src/merge.js"
116
- },
117
- "./shard": {
118
- "types": "./dist/src/shard.d.ts",
119
- "import": "./src/shard.js"
120
- }
121
- },
122
- "bin": {
123
- "pail": "./cli.js"
124
- },
125
- "scripts": {
126
- "build": "tsc --build",
127
- "test": "mocha test/*.test.js",
128
- "coverage": "c8 -r html -r text npm test",
129
- "lint": "standard"
130
- },
131
- "keywords": [
132
- "bucket",
133
- "KV",
134
- "DAG",
135
- "IPLD",
136
- "CID",
137
- "IPFS"
138
- ],
139
- "author": "Alan Shaw",
140
- "license": "Apache-2.0 OR MIT",
141
- "files": [
142
- "src",
143
- "dist"
144
- ],
145
- "dependencies": {
146
- "@ipld/dag-cbor": "^9.2.0",
147
- "multiformats": "^13.1.0"
148
- },
149
- "devDependencies": {
150
- "archy": "^1.0.0",
151
- "c8": "^8.0.1",
152
- "carstream": "^2.0.0",
153
- "cli-color": "^2.0.3",
154
- "mocha": "^10.2.0",
155
- "nanoid": "^4.0.0",
156
- "sade": "^1.8.1",
157
- "standard": "^17.0.0",
158
- "typescript": "^5.0.2"
159
- },
160
- "repository": {
161
- "type": "git",
162
- "url": "git+https://github.com/web3-storage/pail.git"
163
- },
164
- "bugs": {
165
- "url": "https://github.com/web3-storage/pail/issues"
166
- },
167
- "homepage": "https://github.com/web3-storage/pail#readme",
168
- "standard": {
169
- "ignore": [
170
- "*.ts"
171
- ]
172
- }
173
- }
@@ -1,172 +0,0 @@
1
- {
2
- "name": "cborg",
3
- "version": "4.2.7",
4
- "description": "Fast CBOR with a focus on strictness",
5
- "main": "cborg/index.js",
6
- "type": "module",
7
- "bin": {
8
- "cborg": "cborg/bin.js"
9
- },
10
- "repository": {
11
- "type": "git",
12
- "url": "git@github.com:rvagg/cborg.git"
13
- },
14
- "keywords": [
15
- "cbor"
16
- ],
17
- "author": "Rod <rod@vagg.org> (http://r.va.gg/)",
18
- "license": "Apache-2.0",
19
- "devDependencies": {
20
- "@semantic-release/changelog": "^6.0.3",
21
- "@semantic-release/commit-analyzer": "^13.0.0",
22
- "@semantic-release/git": "^10.0.1",
23
- "@semantic-release/github": "^11.0.0",
24
- "@semantic-release/npm": "^12.0.1",
25
- "@semantic-release/release-notes-generator": "^14.0.1",
26
- "@types/chai": "^5.0.0",
27
- "@types/mocha": "^10.0.8",
28
- "@types/node": "^22.7.0",
29
- "c8": "^10.1.2",
30
- "chai": "^5.1.1",
31
- "conventional-changelog-conventionalcommits": "^8.0.0",
32
- "ipld-garbage": "^5.0.0",
33
- "mocha": "^11.0.1",
34
- "polendina": "^3.2.2",
35
- "semantic-release": "^24.1.1",
36
- "standard": "^17.1.2",
37
- "typescript": "^5.6.2"
38
- },
39
- "exports": {
40
- ".": {
41
- "import": "./cborg/index.js",
42
- "types": "./types/cborg/index.d.ts"
43
- },
44
- "./length": {
45
- "import": "./cborg/length.js",
46
- "types": "./types/cborg/length.d.ts"
47
- },
48
- "./taglib": {
49
- "import": "./taglib.js",
50
- "types": "./types/taglib.d.ts"
51
- },
52
- "./json": {
53
- "import": "./json/json.js",
54
- "types": "./types/json/json.d.ts"
55
- },
56
- "./interface": {
57
- "types": "./types/interface.d.ts"
58
- },
59
- "./utils": {
60
- "import": "./utils/index.js",
61
- "types": "./types/utils/index.d.ts"
62
- }
63
- },
64
- "types": "cborg.d.ts",
65
- "typesVersions": {
66
- "*": {
67
- "json": [
68
- "types/json/json.d.ts"
69
- ],
70
- "length": [
71
- "types/cborg/length.d.ts"
72
- ],
73
- "*": [
74
- "types/*"
75
- ],
76
- "types/*": [
77
- "types/*"
78
- ]
79
- }
80
- },
81
- "release": {
82
- "branches": [
83
- "master"
84
- ],
85
- "plugins": [
86
- [
87
- "@semantic-release/commit-analyzer",
88
- {
89
- "preset": "conventionalcommits",
90
- "releaseRules": [
91
- {
92
- "breaking": true,
93
- "release": "major"
94
- },
95
- {
96
- "revert": true,
97
- "release": "patch"
98
- },
99
- {
100
- "type": "feat",
101
- "release": "minor"
102
- },
103
- {
104
- "type": "fix",
105
- "release": "patch"
106
- },
107
- {
108
- "type": "chore",
109
- "release": "patch"
110
- },
111
- {
112
- "type": "docs",
113
- "release": "patch"
114
- },
115
- {
116
- "type": "test",
117
- "release": "patch"
118
- },
119
- {
120
- "scope": "no-release",
121
- "release": false
122
- }
123
- ]
124
- }
125
- ],
126
- [
127
- "@semantic-release/release-notes-generator",
128
- {
129
- "preset": "conventionalcommits",
130
- "presetConfig": {
131
- "types": [
132
- {
133
- "type": "feat",
134
- "section": "Features"
135
- },
136
- {
137
- "type": "fix",
138
- "section": "Bug Fixes"
139
- },
140
- {
141
- "type": "chore",
142
- "section": "Trivial Changes"
143
- },
144
- {
145
- "type": "docs",
146
- "section": "Trivial Changes"
147
- },
148
- {
149
- "type": "test",
150
- "section": "Tests"
151
- }
152
- ]
153
- }
154
- }
155
- ],
156
- "@semantic-release/changelog",
157
- "@semantic-release/npm",
158
- "@semantic-release/github",
159
- "@semantic-release/git"
160
- ]
161
- },
162
- "scripts": {
163
- "lint": "standard *.js cborg/*.js json/*.js utils/*.js test/*.js",
164
- "build": "npm run build:types",
165
- "build:types": "tsc --build",
166
- "test:node": "c8 --check-coverage --exclude=test/** mocha test/test-*.js",
167
- "test:browser": "polendina --cleanup test/test-*.js",
168
- "test": "npm run lint && npm run build && npm run test:node && npm run test:browser",
169
- "test:ci": "npm run test",
170
- "coverage": "c8 --reporter=html --reporter=text mocha test/test-*.js && npx st -d coverage -p 8888"
171
- }
172
- }
@@ -1,180 +0,0 @@
1
- {
2
- "name": "ipfs-unixfs-exporter",
3
- "version": "13.6.1",
4
- "description": "JavaScript implementation of the UnixFs exporter used by IPFS",
5
- "license": "Apache-2.0 OR MIT",
6
- "homepage": "https://github.com/ipfs/js-ipfs-unixfs/tree/main/packages/ipfs-unixfs-exporter#readme",
7
- "repository": {
8
- "type": "git",
9
- "url": "git+https://github.com/ipfs/js-ipfs-unixfs.git"
10
- },
11
- "bugs": {
12
- "url": "https://github.com/ipfs/js-ipfs-unixfs/issues"
13
- },
14
- "publishConfig": {
15
- "access": "public",
16
- "provenance": true
17
- },
18
- "keywords": [
19
- "IPFS"
20
- ],
21
- "type": "module",
22
- "types": "./dist/src/index.d.ts",
23
- "files": [
24
- "src",
25
- "dist",
26
- "!dist/test",
27
- "!**/*.tsbuildinfo"
28
- ],
29
- "exports": {
30
- ".": {
31
- "types": "./dist/src/index.d.ts",
32
- "import": "./dist/src/index.js"
33
- }
34
- },
35
- "eslintConfig": {
36
- "extends": "ipfs",
37
- "parserOptions": {
38
- "project": true,
39
- "sourceType": "module"
40
- }
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
- "scripts": {
128
- "test": "aegir test",
129
- "test:node": "aegir test -t node --cov",
130
- "test:chrome": "aegir test -t browser --cov",
131
- "test:firefox": "aegir test -t browser -- --browser firefox",
132
- "build": "aegir build",
133
- "clean": "aegir clean",
134
- "lint": "aegir lint",
135
- "dep-check": "aegir dep-check",
136
- "release": "aegir release"
137
- },
138
- "dependencies": {
139
- "@ipld/dag-cbor": "^9.2.1",
140
- "@ipld/dag-json": "^10.2.2",
141
- "@ipld/dag-pb": "^4.1.2",
142
- "@multiformats/murmur3": "^2.1.8",
143
- "hamt-sharding": "^3.0.6",
144
- "interface-blockstore": "^5.3.0",
145
- "ipfs-unixfs": "^11.0.0",
146
- "it-filter": "^3.1.1",
147
- "it-last": "^3.0.6",
148
- "it-map": "^3.1.1",
149
- "it-parallel": "^3.0.8",
150
- "it-pipe": "^3.0.1",
151
- "it-pushable": "^3.2.3",
152
- "multiformats": "^13.2.3",
153
- "p-queue": "^8.0.1",
154
- "progress-events": "^1.0.1"
155
- },
156
- "devDependencies": {
157
- "@types/readable-stream": "^4.0.15",
158
- "@types/sinon": "^17.0.3",
159
- "aegir": "^44.1.1",
160
- "blockstore-core": "^5.0.0",
161
- "delay": "^6.0.0",
162
- "ipfs-unixfs-importer": "^15.0.0",
163
- "iso-random-stream": "^2.0.2",
164
- "it-all": "^3.0.6",
165
- "it-buffer-stream": "^3.0.8",
166
- "it-drain": "^3.0.7",
167
- "it-first": "^3.0.6",
168
- "it-to-buffer": "^4.0.7",
169
- "merge-options": "^3.0.4",
170
- "readable-stream": "^4.5.2",
171
- "sinon": "^19.0.2",
172
- "uint8arrays": "^5.1.0",
173
- "wherearewe": "^2.0.1"
174
- },
175
- "browser": {
176
- "fs": false,
177
- "readable-stream": false
178
- },
179
- "sideEffects": false
180
- }