Skip to content

Commit

Permalink
feat: rename, add semantic release
Browse files Browse the repository at this point in the history
  • Loading branch information
HashMapsData2Value committed Sep 16, 2024
1 parent 01dea2d commit 84f2576
Showing 1 changed file with 35 additions and 3 deletions.
38 changes: 35 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
{
"name": "bip32-ed25519-ts",
"name": "xhd-wallet-api",
"version": "0.0.1",
"description": "A Typescript implementation of BIP-32 Ed25519 for Algorand ARC-52.",
"main": "index.js",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"test": "jest --verbose",
"test:cov": "jest --coverage"
},
Expand Down Expand Up @@ -51,5 +52,36 @@
],
"testEnvironment": "node"
},
"repository": "[email protected]:algorandfoundation/bip32-ed25519-ts.git"
"repository": "[email protected]:algorandfoundation/bip32-ed25519-ts.git",
"release": {
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/changelog",
"@semantic-release/npm",
[
"@semantic-release/git",
{
"assets": [
"CHANGELOG.md",
"package.json"
],
"message": "chore(release): xHD Wallet API \n\n${nextRelease.notes}"
}
],
[
"@semantic-release/github",
{
"successComment": false
}
]
],
"branches": [
"release/*",
{
"name": "main",
"prerelease": "canary"
}
]
}
}

0 comments on commit 84f2576

Please sign in to comment.