gun-eth 1.4.22 → 1.4.23

Sign up to get free protection for your applications and to get access to all the features.
package/package.json CHANGED
@@ -1,21 +1,23 @@
1
1
  {
2
2
  "name": "gun-eth",
3
- "version": "1.4.22",
3
+ "version": "1.4.23",
4
4
  "description": "A GunDB plugin for Ethereum, and Web3",
5
5
  "main": "dist/gun-eth.cjs.js",
6
6
  "module": "dist/gun-eth.esm.js",
7
7
  "browser": "dist/gun-eth.min.js",
8
8
  "type": "module",
9
9
  "scripts": {
10
+ "build": "rollup -c",
11
+ "build:all": "npm run build:node && npm run build:browser && npm run build:module",
12
+ "build:node": "rollup -c rollup.config.node.js",
13
+ "build:browser": "rollup -c rollup.config.browser.js",
14
+ "build:module": "rollup -c rollup.config.module.js",
15
+ "build:watch": "rollup -c -w",
10
16
  "test": "echo \"Error: no test specified\" && exit 1",
11
17
  "start-gun": "node startGun.js",
12
18
  "compile": "hardhat compile",
13
19
  "start-node": "hardhat node",
14
- "deploy-local": "hardhat run scripts/start-local-node.cjs --network localhost",
15
- "test-stealth": "cross-env NODE_ENV=development node --experimental-json-modules src/examples/stealth-example.js",
16
- "test-proof": "cross-env NODE_ENV=development node --experimental-json-modules src/examples/proof-example.js",
17
- "build": "rollup -c",
18
- "build:watch": "rollup -c -w"
20
+ "deploy-local": "hardhat run scripts/start-local-node.cjs --network localhost"
19
21
  },
20
22
  "dependencies": {
21
23
  "ethers": "^6.0.0",