linkdex
Version:
An index mapping block CID to linked block CID.
74 lines (73 loc) • 1.71 kB
JSON
{
"name": "linkdex",
"version": "3.0.0",
"type": "module",
"description": "An index mapping block CID to linked block CID.",
"author": "olizilla",
"license": "Apache-2.0 OR MIT",
"main": "index.js",
"types": "./dist/index.d.ts",
"bin": {
"linkdex": "bin.js"
},
"files": [
"*.js",
"tsconfig.json",
"dist/index.d.*",
"dist/hashing-indexer.d.*",
"dist/decode.d.*"
],
"typesVersions": {
"*": {
"*": [
"*",
"dist/*"
]
}
},
"scripts": {
"start": "./bin.js",
"prepare": "tsc",
"test": "ava",
"pretest": "tsc && standard",
"lint": "standard",
"tsc": "tsc",
"make-cars": "dd if=/dev/urandom of=./random-100mib-file bs=1024 count=102400 && npx ipfs-car --pack random-100mib-file && npx carbites-cli split random-100mib-file.car --size 10MB --strategy treewalk"
},
"dependencies": {
"@ipld/car": "^5.1.1",
"@ipld/dag-cbor": "^9.0.0",
"@ipld/dag-json": "^10.0.1",
"@ipld/dag-pb": "^4.0.2",
"@web3-storage/car-block-validator": "^1.2.0",
"lnmap": "^1.0.1",
"lnset": "^1.2.0",
"multiformats": "^11.0.2",
"sade": "^1.8.1"
},
"devDependencies": {
"@multiformats/blake2": "^1.0.13",
"@types/node": "^18.7.14",
"ava": "^4.3.3",
"standard": "^17.0.0",
"typescript": "^4.8.2"
},
"directories": {
"test": "test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/web3-storage/linkdex.git"
},
"keywords": [
"index",
"IPLD",
"links",
"CID",
"DAG"
],
"bugs": {
"url": "https://github.com/web3-storage/linkdex/issues"
},
"homepage": "https://github.com/web3-storage/linkdex#readme"
}