@helia/mfs 0.0.0

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 ADDED
@@ -0,0 +1,167 @@
1
+ {
2
+ "name": "@helia/mfs",
3
+ "version": "0.0.0",
4
+ "description": "A mutable filesystem powered by Helia",
5
+ "license": "Apache-2.0 OR MIT",
6
+ "homepage": "https://github.com/ipfs/helia-mfs/tree/master/packages/mfs#readme",
7
+ "repository": {
8
+ "type": "git",
9
+ "url": "git+https://github.com/ipfs/helia-mfs.git"
10
+ },
11
+ "bugs": {
12
+ "url": "https://github.com/ipfs/helia-mfs/issues"
13
+ },
14
+ "keywords": [
15
+ "IPFS"
16
+ ],
17
+ "type": "module",
18
+ "types": "./dist/src/index.d.ts",
19
+ "files": [
20
+ "src",
21
+ "dist",
22
+ "!dist/test",
23
+ "!**/*.tsbuildinfo"
24
+ ],
25
+ "exports": {
26
+ ".": {
27
+ "types": "./dist/src/index.d.ts",
28
+ "import": "./dist/src/index.js"
29
+ }
30
+ },
31
+ "eslintConfig": {
32
+ "extends": "ipfs",
33
+ "parserOptions": {
34
+ "sourceType": "module"
35
+ }
36
+ },
37
+ "release": {
38
+ "branches": [
39
+ "main"
40
+ ],
41
+ "plugins": [
42
+ [
43
+ "@semantic-release/commit-analyzer",
44
+ {
45
+ "preset": "conventionalcommits",
46
+ "releaseRules": [
47
+ {
48
+ "breaking": true,
49
+ "release": "major"
50
+ },
51
+ {
52
+ "revert": true,
53
+ "release": "patch"
54
+ },
55
+ {
56
+ "type": "feat",
57
+ "release": "minor"
58
+ },
59
+ {
60
+ "type": "fix",
61
+ "release": "patch"
62
+ },
63
+ {
64
+ "type": "docs",
65
+ "release": "patch"
66
+ },
67
+ {
68
+ "type": "test",
69
+ "release": "patch"
70
+ },
71
+ {
72
+ "type": "deps",
73
+ "release": "patch"
74
+ },
75
+ {
76
+ "scope": "no-release",
77
+ "release": false
78
+ }
79
+ ]
80
+ }
81
+ ],
82
+ [
83
+ "@semantic-release/release-notes-generator",
84
+ {
85
+ "preset": "conventionalcommits",
86
+ "presetConfig": {
87
+ "types": [
88
+ {
89
+ "type": "feat",
90
+ "section": "Features"
91
+ },
92
+ {
93
+ "type": "fix",
94
+ "section": "Bug Fixes"
95
+ },
96
+ {
97
+ "type": "chore",
98
+ "section": "Trivial Changes"
99
+ },
100
+ {
101
+ "type": "docs",
102
+ "section": "Documentation"
103
+ },
104
+ {
105
+ "type": "deps",
106
+ "section": "Dependencies"
107
+ },
108
+ {
109
+ "type": "test",
110
+ "section": "Tests"
111
+ }
112
+ ]
113
+ }
114
+ }
115
+ ],
116
+ "@semantic-release/changelog",
117
+ "@semantic-release/npm",
118
+ "@semantic-release/github",
119
+ "@semantic-release/git"
120
+ ]
121
+ },
122
+ "scripts": {
123
+ "clean": "aegir clean",
124
+ "lint": "aegir lint",
125
+ "dep-check": "aegir dep-check",
126
+ "build": "aegir build",
127
+ "test": "aegir test",
128
+ "test:chrome": "aegir test -t browser --cov",
129
+ "test:chrome-webworker": "aegir test -t webworker",
130
+ "test:firefox": "aegir test -t browser -- --browser firefox",
131
+ "test:firefox-webworker": "aegir test -t webworker -- --browser firefox",
132
+ "test:node": "aegir test -t node --cov",
133
+ "test:electron-main": "aegir test -t electron-main",
134
+ "release": "aegir release"
135
+ },
136
+ "dependencies": {
137
+ "@helia/interface": "next",
138
+ "@helia/unixfs": "^1.2.2",
139
+ "@ipld/dag-pb": "^4.0.0",
140
+ "@libp2p/interfaces": "^3.3.1",
141
+ "@libp2p/logger": "^3.0.1",
142
+ "@multiformats/murmur3": "^2.1.2",
143
+ "hamt-sharding": "^3.0.2",
144
+ "interface-blockstore": "^5.0.0",
145
+ "interface-datastore": "^8.2.2",
146
+ "ipfs-unixfs": "^11.0.0",
147
+ "ipfs-unixfs-exporter": "^13.1.0",
148
+ "ipfs-unixfs-importer": "^15.1.0",
149
+ "it-last": "^3.0.1",
150
+ "it-pipe": "^3.0.1",
151
+ "merge-options": "^3.0.4",
152
+ "multiformats": "^12.0.1",
153
+ "progress-events": "^1.0.0",
154
+ "sparse-array": "^1.3.2"
155
+ },
156
+ "devDependencies": {
157
+ "aegir": "^40.0.9",
158
+ "blockstore-core": "^4.0.1",
159
+ "datastore-core": "^9.2.0",
160
+ "delay": "^6.0.0",
161
+ "it-all": "^3.0.1",
162
+ "it-drain": "^3.0.1",
163
+ "it-first": "^3.0.1",
164
+ "it-to-buffer": "^4.0.1",
165
+ "uint8arrays": "^4.0.3"
166
+ }
167
+ }