139 lines
3.0 KiB
JSON
139 lines
3.0 KiB
JSON
|
|
{
|
||
|
|
"name": "interface-store",
|
||
|
|
"version": "5.1.2",
|
||
|
|
"description": "A generic interface for storing and retrieving data",
|
||
|
|
"license": "Apache-2.0 OR MIT",
|
||
|
|
"homepage": "https://github.com/ipfs/js-stores/tree/master/packages/interface-store#readme",
|
||
|
|
"repository": {
|
||
|
|
"type": "git",
|
||
|
|
"url": "git+https://github.com/ipfs/js-stores.git"
|
||
|
|
},
|
||
|
|
"bugs": {
|
||
|
|
"url": "https://github.com/ipfs/js-stores/issues"
|
||
|
|
},
|
||
|
|
"engines": {
|
||
|
|
"node": ">=16.0.0",
|
||
|
|
"npm": ">=7.0.0"
|
||
|
|
},
|
||
|
|
"main": "src/index.js",
|
||
|
|
"types": "dist/src/index.d.ts",
|
||
|
|
"typesVersions": {
|
||
|
|
"*": {
|
||
|
|
"*": [
|
||
|
|
"*",
|
||
|
|
"dist/*",
|
||
|
|
"dist/src/*"
|
||
|
|
],
|
||
|
|
"src/*": [
|
||
|
|
"*",
|
||
|
|
"dist/*",
|
||
|
|
"dist/src/*"
|
||
|
|
]
|
||
|
|
}
|
||
|
|
},
|
||
|
|
"files": [
|
||
|
|
"src",
|
||
|
|
"dist"
|
||
|
|
],
|
||
|
|
"eslintConfig": {
|
||
|
|
"extends": "ipfs"
|
||
|
|
},
|
||
|
|
"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"
|
||
|
|
]
|
||
|
|
},
|
||
|
|
"scripts": {
|
||
|
|
"build": "aegir build",
|
||
|
|
"lint": "aegir lint",
|
||
|
|
"clean": "aegir clean",
|
||
|
|
"release": "aegir release"
|
||
|
|
},
|
||
|
|
"devDependencies": {
|
||
|
|
"aegir": "^39.0.9"
|
||
|
|
},
|
||
|
|
"typedoc": {
|
||
|
|
"entryPoint": "./src/index.ts"
|
||
|
|
}
|
||
|
|
}
|