- Add GETTING_STARTED.md with quick start guide and development modes - Add INSTALL.sh automated installation script - Add INSTALLATION_CHECKLIST.md, INSTALLATION_SUCCESS.md, and INSTALLATION_SUMMARY.md - Add QUICK_REFERENCE.md for common commands - Add SETUP_GUIDE.md with detailed setup instructions - Update README.md with improved project overview - Add did-wallet app dependencies and node_modules
181 lines
4.3 KiB
JSON
181 lines
4.3 KiB
JSON
{
|
|
"name": "ipfs-unixfs-exporter",
|
|
"version": "13.1.5",
|
|
"description": "JavaScript implementation of the UnixFs exporter used by IPFS",
|
|
"license": "Apache-2.0 OR MIT",
|
|
"homepage": "https://github.com/ipfs/js-ipfs-unixfs/tree/master/packages/ipfs-unixfs-exporter#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",
|
|
"files": [
|
|
"src",
|
|
"dist",
|
|
"!dist/test",
|
|
"!**/*.tsbuildinfo"
|
|
],
|
|
"exports": {
|
|
".": {
|
|
"types": "./dist/src/index.d.ts",
|
|
"import": "./dist/src/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-cbor": "^9.0.0",
|
|
"@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",
|
|
"ipfs-unixfs": "^11.0.0",
|
|
"it-filter": "^3.0.2",
|
|
"it-last": "^3.0.2",
|
|
"it-map": "^3.0.3",
|
|
"it-parallel": "^3.0.0",
|
|
"it-pipe": "^3.0.1",
|
|
"it-pushable": "^3.1.0",
|
|
"multiformats": "^11.0.0",
|
|
"p-queue": "^7.3.0",
|
|
"progress-events": "^1.0.0",
|
|
"uint8arrays": "^4.0.2"
|
|
},
|
|
"devDependencies": {
|
|
"@types/readable-stream": "^2.3.15",
|
|
"@types/sinon": "^10.0.0",
|
|
"aegir": "^39.0.6",
|
|
"blockstore-core": "^4.0.1",
|
|
"delay": "^5.0.0",
|
|
"ipfs-unixfs-importer": "^15.0.0",
|
|
"iso-random-stream": "^2.0.2",
|
|
"it-all": "^3.0.2",
|
|
"it-buffer-stream": "^3.0.0",
|
|
"it-first": "^3.0.2",
|
|
"it-to-buffer": "^4.0.2",
|
|
"merge-options": "^3.0.4",
|
|
"readable-stream": "^4.4.0",
|
|
"sinon": "^15.0.0",
|
|
"wherearewe": "^2.0.1"
|
|
},
|
|
"browser": {
|
|
"fs": false,
|
|
"readable-stream": false
|
|
},
|
|
"typedoc": {
|
|
"entryPoint": "./src/index.ts"
|
|
}
|
|
}
|