blockstore-core
Advanced tools
Comparing version 1.0.4 to 1.0.5
114
package.json
{ | ||
"name": "blockstore-core", | ||
"version": "1.0.4", | ||
"version": "1.0.5", | ||
"description": "Contains various implementations of the API contract described in interface-blockstore", | ||
"main": "src/index.js", | ||
"type": "module", | ||
"main": "./cjs/src/index.js", | ||
"types": "types/src/index.d.ts", | ||
@@ -28,12 +27,20 @@ "typesVersions": { | ||
".": { | ||
"import": "./src/index.js" | ||
"browser": "./esm/src/index.js", | ||
"require": "./cjs/src/index.js", | ||
"import": "./esm/src/index.js" | ||
}, | ||
"./base": { | ||
"import": "./src/base.js" | ||
"browser": "./esm/src/base.js", | ||
"require": "./cjs/src/base.js", | ||
"import": "./esm/src/base.js" | ||
}, | ||
"./errors": { | ||
"import": "./src/errors.js" | ||
"browser": "./esm/src/errors.js", | ||
"require": "./cjs/src/errors.js", | ||
"import": "./esm/src/errors.js" | ||
}, | ||
"./memory": { | ||
"import": "./src/memory.js" | ||
"browser": "./esm/src/memory.js", | ||
"require": "./cjs/src/memory.js", | ||
"import": "./esm/src/memory.js" | ||
} | ||
@@ -47,4 +54,87 @@ }, | ||
}, | ||
"publishConfig": { | ||
"directory": "dist" | ||
"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": "chore", | ||
"release": "patch" | ||
}, | ||
{ | ||
"type": "docs", | ||
"release": "patch" | ||
}, | ||
{ | ||
"type": "test", | ||
"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": "Trivial Changes" | ||
}, | ||
{ | ||
"type": "test", | ||
"section": "Tests" | ||
} | ||
] | ||
} | ||
} | ||
], | ||
"@semantic-release/changelog", | ||
[ | ||
"@semantic-release/npm", | ||
{ | ||
"pkgRoot": "dist" | ||
} | ||
], | ||
"@semantic-release/github", | ||
"@semantic-release/git" | ||
] | ||
}, | ||
@@ -98,3 +188,9 @@ "scripts": { | ||
"multiformats": "^9.4.7" | ||
}, | ||
"browser": { | ||
".": "./cjs/src/index.js", | ||
"./base": "./cjs/src/base.js", | ||
"./errors": "./cjs/src/errors.js", | ||
"./memory": "./cjs/src/memory.js" | ||
} | ||
} |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
Major refactor
Supply chain riskPackage has recently undergone a major refactor. It may be unstable or indicate significant internal changes. Use caution when updating to versions that include significant changes.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
49988
35
736
1
No