UNPKG

carbites

Version:

Chunking for CAR files. Split a single CAR into multiple CARs.

102 lines (101 loc) 2.17 kB
{ "name": "carbites", "version": "2.0.0", "description": "Chunking for CAR files. Split a single CAR into multiple CARs.", "main": "lib/index.js", "types": "./types/index.d.ts", "type": "module", "scripts": { "build": "npm run build:types", "build:types": "tsc --build", "test": "npm run lint && npm run test:node", "test:node": "ava --verbose 'test/*.spec.js'", "coverage": "c8 npm run test", "lint": "standard" }, "author": "Alan Shaw", "license": "(Apache-2.0 AND MIT)", "dependencies": { "@ipld/car": "^3.0.1", "@ipld/dag-cbor": "^6.0.3", "@ipld/dag-json": "^9.0.1", "@ipld/dag-pb": "^2.0.2", "multiformats": "^9.0.4" }, "devDependencies": { "@web-std/blob": "^2.1.0", "ava": "^3.15.0", "c8": "^7.7.2", "ipld-garbage": "^4.0.1", "standard": "^16.0.3", "typescript": "^4.2.4" }, "standard": { "ignore": [ "dist" ] }, "exports": { ".": { "import": "./lib/index.js", "types": "./types/index.d.ts" }, "./rooted": { "import": "./lib/rooted/index.js", "types": "./types/rooted/index.d.ts" }, "./simple": { "import": "./lib/simple/index.js", "types": "./types/simple/index.d.ts" }, "./treewalk": { "import": "./lib/treewalk/index.js", "types": "./types/treewalk/index.d.ts" } }, "typesVersions": { "*": { "*": [ "types/*" ], "simple": [ "types/simple/index.d.ts" ], "rooted": [ "types/rooted/index.d.ts" ], "treewalk": [ "types/treewalk/index.d.ts" ], "types/*": [ "types/*" ] } }, "repository": { "type": "git", "url": "git+https://github.com/nftstorage/carbites.git" }, "bugs": { "url": "https://github.com/nftstorage/carbites/issues" }, "homepage": "https://github.com/nftstorage/carbites#readme", "keywords": [ "car", "content", "archive", "CID", "IPLD", "multiformats", "chunk", "chunker", "chunking", "split", "splitter" ], "files": [ "lib", "tsconfig.json", "types" ] }