180 lines
4.0 KiB
JSON
180 lines
4.0 KiB
JSON
|
|
{
|
||
|
|
"name": "@ipld/dag-pb",
|
||
|
|
"version": "4.1.5",
|
||
|
|
"description": "JS implementation of DAG-PB",
|
||
|
|
"author": "Rod <rod@vagg.org> (http://r.va.gg/)",
|
||
|
|
"license": "Apache-2.0 OR MIT",
|
||
|
|
"homepage": "https://github.com/ipld/js-dag-pb#readme",
|
||
|
|
"repository": {
|
||
|
|
"type": "git",
|
||
|
|
"url": "git+https://github.com/ipld/js-dag-pb.git"
|
||
|
|
},
|
||
|
|
"bugs": {
|
||
|
|
"url": "https://github.com/ipld/js-dag-pb/issues"
|
||
|
|
},
|
||
|
|
"keywords": [
|
||
|
|
"ipfs",
|
||
|
|
"ipld",
|
||
|
|
"multiformats"
|
||
|
|
],
|
||
|
|
"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"
|
||
|
|
}
|
||
|
|
},
|
||
|
|
"eslintConfig": {
|
||
|
|
"extends": "ipfs",
|
||
|
|
"parserOptions": {
|
||
|
|
"sourceType": "module"
|
||
|
|
},
|
||
|
|
"ignorePatterns": [
|
||
|
|
"dist",
|
||
|
|
"test/ts-use"
|
||
|
|
]
|
||
|
|
},
|
||
|
|
"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",
|
||
|
|
{
|
||
|
|
"assets": [
|
||
|
|
"CHANGELOG.md",
|
||
|
|
"package.json"
|
||
|
|
]
|
||
|
|
}
|
||
|
|
]
|
||
|
|
]
|
||
|
|
},
|
||
|
|
"scripts": {
|
||
|
|
"clean": "aegir clean",
|
||
|
|
"docs": "aegir docs",
|
||
|
|
"lint": "aegir lint",
|
||
|
|
"build": "aegir build",
|
||
|
|
"release": "aegir release",
|
||
|
|
"test": "aegir lint && aegir test",
|
||
|
|
"test:ts": "npm run test --prefix test/ts-use",
|
||
|
|
"test:node": "aegir test -t node --cov",
|
||
|
|
"test:chrome": "aegir test -t browser --cov",
|
||
|
|
"test:chrome-webworker": "aegir test -t webworker",
|
||
|
|
"test:firefox": "aegir test -t browser -- --browser firefox",
|
||
|
|
"test:firefox-webworker": "aegir test -t webworker -- --browser firefox",
|
||
|
|
"test:electron-main": "aegir test -t electron-main",
|
||
|
|
"dep-check": "aegir dep-check -i @ipld/dag-pb"
|
||
|
|
},
|
||
|
|
"dependencies": {
|
||
|
|
"multiformats": "^13.1.0"
|
||
|
|
},
|
||
|
|
"devDependencies": {
|
||
|
|
"aegir": "^47.0.6"
|
||
|
|
}
|
||
|
|
}
|