carstream
Version:
Web stream CAR reader and writer.
98 lines (97 loc) • 1.89 kB
JSON
{
"name": "carstream",
"version": "2.3.0",
"description": "Web stream CAR reader and writer.",
"main": "src/index.js",
"type": "module",
"types": "types/index.d.ts",
"files": [
"src",
"types"
],
"scripts": {
"build": "tsc --build",
"test": "entail",
"coverage": "c8 npm test",
"lint": "standard"
},
"keywords": [
"CAR",
"stream",
"web",
"CID",
"IPLD"
],
"author": "Alan Shaw",
"license": "Apache-2.0 OR MIT",
"exports": {
".": {
"import": "./src/index.js",
"types": "./types/index.d.ts"
},
"./api": {
"import": "./src/api.js",
"types": "./types/api.d.ts"
},
"./reader": {
"import": "./src/reader.js",
"types": "./types/reader.d.ts"
},
"./varint": {
"import": "./src/varint.js",
"types": "./types/varint.d.ts"
},
"./writer": {
"import": "./src/writer.js",
"types": "./types/writer.d.ts"
}
},
"typesVersions": {
"*": {
"*": [
"types/*"
],
"api": [
"types/api.d.ts"
],
"reader": [
"types/reader.d.ts"
],
"writer": [
"types/writer.d.ts"
],
"types/*": [
"types/*"
]
}
},
"dependencies": {
"@ipld/dag-cbor": "^9.0.3",
"multiformats": "^13.0.1",
"uint8arraylist": "^2.4.3"
},
"devDependencies": {
"@ipld/car": "^5.1.1",
"c8": "^10.1.3",
"entail": "^2.1.1",
"lnmap": "^2.0.0",
"standard": "^17.1.0",
"typescript": "^5.1.3"
},
"standard": {
"ignore": [
"*.ts"
]
},
"directories": {
"test": "test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/alanshaw/carstream.git"
},
"bugs": {
"url": "https://github.com/alanshaw/carstream/issues"
},
"homepage": "https://github.com/alanshaw/carstream#readme"
}