- 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
192 lines
4.4 KiB
JSON
192 lines
4.4 KiB
JSON
{
|
|
"name": "ipfs-unixfs-importer",
|
|
"version": "15.1.5",
|
|
"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": "^3.0.2",
|
|
"it-batch": "^3.0.2",
|
|
"it-first": "^3.0.2",
|
|
"it-parallel-batch": "^3.0.1",
|
|
"multiformats": "^11.0.0",
|
|
"progress-events": "^1.0.0",
|
|
"rabin-wasm": "^0.1.4",
|
|
"uint8arraylist": "^2.4.3",
|
|
"uint8arrays": "^4.0.2"
|
|
},
|
|
"devDependencies": {
|
|
"aegir": "^39.0.6",
|
|
"blockstore-core": "^4.0.1",
|
|
"it-last": "^3.0.2",
|
|
"wherearewe": "^2.0.1"
|
|
},
|
|
"browser": {
|
|
"fs": false
|
|
},
|
|
"typedoc": {
|
|
"entryPoint": "./src/index.ts"
|
|
}
|
|
}
|