141 lines
3.1 KiB
JSON
141 lines
3.1 KiB
JSON
{
|
|
"name": "protons-runtime",
|
|
"version": "7.0.0",
|
|
"description": "Shared code to make your bundle smaller when running protons in your app",
|
|
"license": "Apache-2.0 OR MIT",
|
|
"homepage": "https://github.com/ipfs/protons/tree/main/packages/protons-runtime#readme",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/ipfs/protons.git"
|
|
},
|
|
"bugs": {
|
|
"url": "https://github.com/ipfs/protons/issues"
|
|
},
|
|
"publishConfig": {
|
|
"access": "public",
|
|
"provenance": true
|
|
},
|
|
"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",
|
|
"doc-check": "aegir doc-check",
|
|
"build": "aegir build",
|
|
"release": "aegir release"
|
|
},
|
|
"dependencies": {
|
|
"uint8-varint": "^3.0.0",
|
|
"uint8arraylist": "^3.0.0",
|
|
"uint8arrays": "^6.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"aegir": "^48.0.1"
|
|
}
|
|
}
|