ipfsd-ctl
Version:
Spawn IPFS Daemons, Kubo or...
168 lines (167 loc) • 3.9 kB
JSON
{
"name": "ipfsd-ctl",
"version": "16.0.3",
"description": "Spawn IPFS Daemons, Kubo or...",
"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"
},
"publishConfig": {
"access": "public",
"provenance": true
},
"keywords": [
"daemon",
"ipfs",
"node"
],
"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"
}
},
"release": {
"branches": [
"main"
],
"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",
{
"assets": [
"CHANGELOG.md",
"package.json"
]
}
]
]
},
"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": "^3.0.2",
"@libp2p/logger": "^6.0.5",
"execa": "^9.3.1",
"joi": "^18.0.1",
"kubo-rpc-client": "^6.0.0",
"merge-options": "^3.0.1",
"nanoid": "^5.0.7",
"p-defer": "^4.0.1",
"p-wait-for": "^6.0.0",
"wherearewe": "^2.0.1"
},
"devDependencies": {
"aegir": "^47.0.22",
"kubo": "^0.40.1"
},
"browser": {
"./dist/src/endpoint/server.js": "./dist/src/endpoint/server.browser.js",
"./dist/src/kubo/utils.js": false,
"./dist/src/kubo/daemon.js": "./dist/src/kubo/client.js",
"kubo": false
},
"sidEffects": false
}