UNPKG

ipfsd-ctl

Version:
174 lines (173 loc) 4.17 kB
{ "name": "ipfsd-ctl", "version": "13.0.0", "description": "Spawn IPFS Daemons, JS or Go", "license": "Apache-2.0 OR MIT", "homepage": "https://github.com/ipfs/js-ipfsd-ctl#readme", "repository": { "type": "git", "url": "git+https://github.com/ipfs/js-ipfsd-ctl.git" }, "bugs": { "url": "https://github.com/ipfs/js-ipfsd-ctl/issues" }, "keywords": [ "daemon", "ipfs", "node" ], "engines": { "node": ">=16.0.0", "npm": ">=7.0.0" }, "type": "module", "types": "./dist/src/index.d.ts", "files": [ "src", "dist", "!dist/test", "!**/*.tsbuildinfo" ], "exports": { ".": { "types": "./dist/src/index.d.ts", "import": "./dist/src/index.js" } }, "eslintConfig": { "extends": "ipfs", "parserOptions": { "sourceType": "module" } }, "release": { "branches": [ "master" ], "plugins": [ [ "@semantic-release/commit-analyzer", { "preset": "conventionalcommits", "releaseRules": [ { "breaking": true, "release": "major" }, { "revert": true, "release": "patch" }, { "type": "feat", "release": "minor" }, { "type": "fix", "release": "patch" }, { "type": "docs", "release": "patch" }, { "type": "test", "release": "patch" }, { "type": "deps", "release": "patch" }, { "scope": "no-release", "release": false } ] } ], [ "@semantic-release/release-notes-generator", { "preset": "conventionalcommits", "presetConfig": { "types": [ { "type": "feat", "section": "Features" }, { "type": "fix", "section": "Bug Fixes" }, { "type": "chore", "section": "Trivial Changes" }, { "type": "docs", "section": "Documentation" }, { "type": "deps", "section": "Dependencies" }, { "type": "test", "section": "Tests" } ] } } ], "@semantic-release/changelog", "@semantic-release/npm", "@semantic-release/github", "@semantic-release/git" ] }, "scripts": { "clean": "aegir clean", "lint": "aegir lint", "dep-check": "aegir dep-check", "build": "aegir build", "test": "aegir test", "test:node": "aegir test -t node --cov", "test:chrome": "aegir test -t browser --cov", "test:firefox": "aegir test -t browser -- --browser firefox", "release": "aegir release", "docs": "aegir docs" }, "dependencies": { "@hapi/boom": "^10.0.0", "@hapi/hapi": "^21.1.0", "@libp2p/interface-peer-id": "^2.0.0", "@libp2p/logger": "^2.0.0", "@multiformats/multiaddr": "^11.0.0", "execa": "^6.1.0", "ipfs-utils": "^9.0.1", "joi": "^17.2.1", "merge-options": "^3.0.1", "nanoid": "^4.0.0", "p-wait-for": "^5.0.0", "temp-write": "^5.0.0", "wherearewe": "^2.0.1" }, "devDependencies": { "aegir": "^37.0.15", "go-ipfs": "^0.17.0", "ipfs": "^0.66.0", "ipfs-client": "^0.10.0", "ipfs-core-types": "^0.14.0", "ipfs-http-client": "^60.0.0", "kubo-rpc-client": "^3.0.0", "util": "^0.12.4" }, "browser": { "./dist/src/endpoint/server.js": "./dist/src/endpoint/server.browser.js", "./dist/src/utils.js": "./dist/src/utils.browser.js", "./dist/src/ipfsd-daemon.js": "./dist/src/ipfsd-client.js", "go-ipfs": false }, "jsdelivr": "dist/index.min.js", "unpkg": "dist/index.min.js" }