UNPKG

ipfs-unixfs-importer

Version:

JavaScript implementation of the UnixFs importer used by IPFS

194 lines (193 loc) 4.52 kB
{ "name": "ipfs-unixfs-importer", "version": "15.1.1", "description": "JavaScript implementation of the UnixFs importer used by IPFS", "license": "Apache-2.0 OR MIT", "homepage": "https://github.com/ipfs/js-ipfs-unixfs/tree/master/packages/ipfs-unixfs-importer#readme", "repository": { "type": "git", "url": "git+https://github.com/ipfs/js-ipfs-unixfs.git" }, "bugs": { "url": "https://github.com/ipfs/js-ipfs-unixfs/issues" }, "keywords": [ "IPFS" ], "engines": { "node": ">=16.0.0", "npm": ">=7.0.0" }, "type": "module", "types": "./dist/src/index.d.ts", "typesVersions": { "*": { "*": [ "*", "dist/*", "dist/src/*", "dist/src/*/index" ], "src/*": [ "*", "dist/*", "dist/src/*", "dist/src/*/index" ] } }, "files": [ "src", "dist", "!dist/test", "!**/*.tsbuildinfo" ], "exports": { ".": { "types": "./dist/src/index.d.ts", "import": "./dist/src/index.js" }, "./chunker": { "types": "./dist/src/chunker/index.d.ts", "import": "./dist/src/chunker/index.js" }, "./layout": { "types": "./dist/src/layout/index.d.ts", "import": "./dist/src/layout/index.js" } }, "eslintConfig": { "extends": "ipfs", "parserOptions": { "sourceType": "module" } }, "release": { "branches": [ "master" ], "plugins": [ [ "@semantic-release/commit-analyzer", { "preset": "conventionalcommits", "releaseRules": [ { "breaking": true, "release": "major" }, { "revert": true, "release": "patch" }, { "type": "feat", "release": "minor" }, { "type": "fix", "release": "patch" }, { "type": "docs", "release": "patch" }, { "type": "test", "release": "patch" }, { "type": "deps", "release": "patch" }, { "scope": "no-release", "release": false } ] } ], [ "@semantic-release/release-notes-generator", { "preset": "conventionalcommits", "presetConfig": { "types": [ { "type": "feat", "section": "Features" }, { "type": "fix", "section": "Bug Fixes" }, { "type": "chore", "section": "Trivial Changes" }, { "type": "docs", "section": "Documentation" }, { "type": "deps", "section": "Dependencies" }, { "type": "test", "section": "Tests" } ] } } ], "@semantic-release/changelog", "@semantic-release/npm", "@semantic-release/github", "@semantic-release/git" ] }, "scripts": { "test": "aegir test", "test:node": "aegir test -t node --cov", "test:chrome": "aegir test -t browser --cov", "test:firefox": "aegir test -t browser -- --browser firefox", "build": "aegir build", "clean": "aegir clean", "lint": "aegir lint", "dep-check": "aegir dep-check", "release": "aegir release" }, "dependencies": { "@ipld/dag-pb": "^4.0.0", "@multiformats/murmur3": "^2.0.0", "err-code": "^3.0.1", "hamt-sharding": "^3.0.0", "interface-blockstore": "^5.0.0", "interface-store": "^5.0.1", "ipfs-unixfs": "^11.0.0", "it-all": "^2.0.0", "it-batch": "^2.0.0", "it-first": "^2.0.0", "it-parallel-batch": "^2.0.0", "multiformats": "^11.0.0", "progress-events": "^1.0.0", "rabin-wasm": "^0.1.4", "uint8arraylist": "^2.4.3", "uint8arrays": "^4.0.2" }, "devDependencies": { "aegir": "^38.1.2", "blockstore-core": "^4.0.1", "it-buffer-stream": "^3.0.0", "it-drain": "^2.0.0", "it-last": "^2.0.0", "wherearewe": "^2.0.1" }, "browser": { "fs": false }, "typedoc": { "entryPoint": "./src/index.ts" } }