signet.js 0.0.2-beta.2 → 0.0.2-beta.3
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 +4 -4
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "signet.js",
|
|
3
|
-
"version": "0.0.2-beta.
|
|
3
|
+
"version": "0.0.2-beta.3",
|
|
4
4
|
"description": "",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"exports": {
|
|
@@ -26,9 +26,9 @@
|
|
|
26
26
|
"build": "rm -rf dist && npm run build:browser && npm run build:node && cp package.json README.md LICENSE dist/",
|
|
27
27
|
"build:browser": "vite build --mode browser",
|
|
28
28
|
"build:node": "vite build --mode node",
|
|
29
|
-
"pre:deploy": "npm run build",
|
|
30
|
-
"publish": "npm run pre:deploy && npm publish",
|
|
31
|
-
"publish:beta": "npm run pre:deploy && cd dist && npm publish --tag beta",
|
|
29
|
+
"pre:deploy": "npm run build && npm run docs:build",
|
|
30
|
+
"publish-npm": "npm run pre:deploy && npm publish",
|
|
31
|
+
"publish-npm:beta": "npm run pre:deploy && cd dist && npm publish --tag beta",
|
|
32
32
|
"hardhat": "pnpm exec hardhat node --config hardhat.config.mts",
|
|
33
33
|
"test": "pnpm exec hardhat node --config hardhat.config.mts & sleep 2 && vitest run && pkill -f hardhat",
|
|
34
34
|
"test:watch": "pnpm exec hardhat node --config hardhat.config.mts & sleep 2 && vitest --watch",
|