signet.js 0.0.12-beta.13 → 0.0.12-beta.17

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "signet.js",
3
- "version": "0.0.12-beta.13",
3
+ "version": "0.0.12-beta.17",
4
4
  "description": "A TypeScript library for handling multi-chain transactions and signatures using Signet MPC",
5
5
  "type": "module",
6
6
  "exports": {
@@ -32,6 +32,10 @@
32
32
  "pre:deploy": "npm run build && npm run docs:build",
33
33
  "publish-npm": "npm run pre:deploy && cd dist && npm publish",
34
34
  "publish-npm:beta": "npm run pre:deploy && cd dist && npm publish --tag beta",
35
+ "release:patch": "npm version patch --no-git-tag-version --force && npm run publish-npm",
36
+ "release:minor": "npm version minor --no-git-tag-version --force && npm run publish-npm",
37
+ "release:major": "npm version major --no-git-tag-version --force && npm run publish-npm",
38
+ "release:beta": "npm version prerelease --preid=beta --no-git-tag-version --force && npm run publish-npm:beta",
35
39
  "hardhat": "pnpm exec hardhat node --config hardhat.config.mts",
36
40
  "test": "pnpm exec hardhat node --config hardhat.config.mts & sleep 2 && vitest run && pkill -f hardhat",
37
41
  "test:watch": "pnpm exec hardhat node --config hardhat.config.mts & sleep 2 && vitest --watch",