UNPKG

ipfs-http-gateway

Version:

JavaScript implementation of the IPFS specification

93 lines (92 loc) 2.12 kB
{ "name": "ipfs-http-gateway", "version": "0.13.1", "description": "JavaScript implementation of the IPFS specification", "license": "Apache-2.0 OR MIT", "homepage": "https://github.com/ipfs/js-ipfs/tree/master/packages/ipfs-http-gateway#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" }, "./resources/index": { "types": "./src/resources/index.d.ts", "import": "./src/resources/index.js" } }, "eslintConfig": { "extends": "ipfs", "parserOptions": { "sourceType": "module" } }, "scripts": { "lint": "aegir lint", "test": "aegir test -t node", "test:node": "aegir test -t node --cov", "clean": "aegir clean", "dep-check": "aegir dep-check -i ipfs-core-types", "build": "aegir build --no-bundle" }, "dependencies": { "@hapi/ammo": "^5.0.1", "@hapi/boom": "^9.1.0", "@hapi/hapi": "^20.0.0", "@libp2p/logger": "^2.0.5", "@multiformats/uri-to-multiaddr": "^7.0.0", "hapi-pino": "^8.5.0", "ipfs-core-types": "^0.14.1", "ipfs-http-response": "^6.0.1", "is-ipfs": "^8.0.0", "it-last": "^2.0.0", "it-to-stream": "^1.0.0", "joi": "^17.2.1", "multiformats": "^11.0.0", "uint8arrays": "^4.0.2" }, "devDependencies": { "@types/hapi-pino": "^8.0.1", "@types/hapi__hapi": "^20.0.5", "aegir": "^37.11.0", "file-type": "^18.0.0", "sinon": "^15.0.1" } }