UNPKG

ipfs-grpc-client

Version:
101 lines (100 loc) 2.56 kB
{ "name": "ipfs-grpc-client", "version": "0.13.1", "description": "A client library for the IPFS gRPC API", "license": "Apache-2.0 OR MIT", "homepage": "https://github.com/ipfs/js-ipfs/tree/master/packages/ipfs-grpc-client#readme", "repository": { "type": "git", "url": "git+https://github.com/ipfs/js-ipfs.git" }, "bugs": { "url": "https://github.com/ipfs/js-ipfs/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": "./src/index.js" } }, "eslintConfig": { "extends": "ipfs", "parserOptions": { "sourceType": "module" } }, "scripts": { "build": "aegir build", "test": "aegir test", "test:node": "aegir test -t node --cov", "test:chrome": "aegir test -t browser --cov", "test:chrome-webworker": "aegir test -t webworker", "test:firefox": "aegir test -t browser -- --browser firefox", "test:firefox-webworker": "aegir test -t webworker -- --browser firefox", "test:electron-main": "aegir test -t electron-main", "lint": "aegir lint", "clean": "aegir clean", "dep-check": "aegir dep-check -i aegir -i ipfs-grpc-protocol -i ipfs-core-types -i protobufjs-cli" }, "dependencies": { "@improbable-eng/grpc-web": "^0.15.0", "@libp2p/logger": "^2.0.5", "@libp2p/peer-id": "^2.0.0", "@multiformats/multiaddr": "^11.1.5", "change-case": "^4.1.1", "err-code": "^3.0.1", "ipfs-core-types": "^0.14.1", "ipfs-core-utils": "^0.18.1", "ipfs-grpc-protocol": "^0.8.1", "ipfs-unixfs": "^9.0.0", "it-first": "^2.0.0", "it-pushable": "^3.0.0", "multiformats": "^11.0.0", "p-defer": "^4.0.0", "protobufjs": "^7.0.0", "uint8arrays": "^4.0.2", "wherearewe": "^2.0.1", "ws": "^8.5.0" }, "devDependencies": { "aegir": "^37.11.0", "it-all": "^2.0.0", "protobufjs-cli": "^1.0.0", "sinon": "^15.0.1" }, "browser": { "./src/grpc/transport.js": "./src/grpc/transport.browser.js", "./src/grpc/transport.node.js": "./src/grpc/transport.browser.js" } }