gun-eth 1.5.1 → 1.5.4

Sign up to get free protection for your applications and to get access to all the features.
package/package.json CHANGED
@@ -1,71 +1,107 @@
1
- {
2
- "name": "gun-eth",
3
- "version": "1.5.1",
4
- "description": "A GunDB plugin for Ethereum, and Web3",
5
- "main": "dist/index.js",
6
- "scripts": {
7
- "test": "echo \"Error: no test specified\" && exit 1",
8
- "start-gun": "node startGun.js",
9
- "compile": "hardhat compile",
10
- "start-node": "hardhat node",
11
- "deploy-local": "hardhat run scripts/start-local-node.cjs --network localhost",
12
- "test-stealth": "cross-env NODE_ENV=development node --experimental-json-modules examples/stealth-example.js",
13
- "test-proof": "cross-env NODE_ENV=development node --experimental-json-modules examples/proof-example.js",
14
- "build": "rollup -c",
15
- "build:watch": "rollup -c -w",
16
- "clean": "rimraf dist"
17
- },
18
- "dependencies": {
19
- "ethers": "^6.0.0",
20
- "express": "^4.21.1",
21
- "gun": "^0.2020.1239"
22
- },
23
- "devDependencies": {
24
- "@nomicfoundation/hardhat-chai-matchers": "^2.0.0",
25
- "@nomicfoundation/hardhat-ethers": "^3.0.0",
26
- "@nomicfoundation/hardhat-network-helpers": "^1.0.0",
27
- "@nomicfoundation/hardhat-toolbox": "^3.0.0",
28
- "@nomicfoundation/hardhat-verify": "^1.0.0",
29
- "@typechain/ethers-v6": "^0.4.0",
30
- "@typechain/hardhat": "^8.0.0",
31
- "@types/chai": "^4.2.0",
32
- "@types/mocha": "^10.0.1",
33
- "chai": "^4.2.0",
34
- "cross-env": "^7.0.3",
35
- "hardhat": "^2.17.0",
36
- "hardhat-gas-reporter": "^1.0.8",
37
- "solidity-coverage": "^0.8.1",
38
- "ts-node": "^10.9.1",
39
- "typechain": "^8.2.0",
40
- "typescript": "^5.0.0",
41
- "@rollup/plugin-commonjs": "^25.0.0",
42
- "@rollup/plugin-node-resolve": "^15.0.0",
43
- "@rollup/plugin-json": "^6.0.0",
44
- "@rollup/plugin-terser": "^0.4.0",
45
- "rollup": "^3.0.0",
46
- "rimraf": "^5.0.0"
47
- },
48
- "author": "scobru",
49
- "repository": {
50
- "type": "git",
51
- "url": "git+https://github.com/scobru/gun-eth.git"
52
- },
53
- "license": "MIT",
54
- "keywords": [
55
- "gundb",
56
- "web3",
57
- "evm",
58
- "ethereum",
59
- "decentralized",
60
- "storage",
61
- "gun",
62
- "db"
63
- ],
64
- "bugs": {
65
- "url": "https://github.com/scobru/gun-eth/issues"
66
- },
67
- "homepage": "https://github.com/scobru/gun-eth#readme",
68
- "files": [
69
- "dist"
70
- ]
71
- }
1
+ {
2
+ "name": "gun-eth",
3
+ "version": "1.5.4",
4
+ "type": "module",
5
+ "main": "./dist/gun-eth.cjs",
6
+ "module": "./dist/gun-eth.mjs",
7
+ "browser": "./dist/gun-eth.browser.mjs",
8
+ "exports": {
9
+ ".": {
10
+ "import": {
11
+ "browser": "./dist/gun-eth.browser.mjs",
12
+ "default": "./dist/gun-eth.mjs"
13
+ },
14
+ "require": "./dist/gun-eth.cjs"
15
+ }
16
+ },
17
+ "description": "A GunDB plugin for Ethereum, and Web3",
18
+ "scripts": {
19
+ "test": "echo \"Error: no test specified\" && exit 1",
20
+ "start-gun": "node startGun.js",
21
+ "compile": "hardhat compile",
22
+ "start-node": "hardhat node",
23
+ "deploy-local": "hardhat run scripts/start-local-node.cjs --network localhost",
24
+ "test-stealth": "cross-env NODE_ENV=development node --experimental-json-modules examples/stealth-example.js",
25
+ "test-proof": "cross-env NODE_ENV=development node --experimental-json-modules examples/proof-example.js",
26
+ "build": "rollup -c",
27
+ "prepare": "npm run build",
28
+ "clean": "rimraf dist"
29
+ },
30
+ "dependencies": {
31
+ "@babel/plugin-proposal-class-properties": "^7.18.6",
32
+ "@babel/plugin-syntax-dynamic-import": "^7.8.3",
33
+ "babel-loader": "^9.2.1",
34
+ "ethers": "^6.0.0",
35
+ "express": "^4.21.1",
36
+ "gun": "^0.2020.1239",
37
+ "text-encoding": "^0.7.0"
38
+ },
39
+ "devDependencies": {
40
+ "@babel/core": "^7.23.2",
41
+ "@babel/plugin-proposal-class-properties": "^7.18.6",
42
+ "@babel/plugin-syntax-dynamic-import": "^7.8.3",
43
+ "@babel/preset-env": "^7.23.2",
44
+ "babel-loader": "^9.1.3",
45
+ "terser-webpack-plugin": "^5.3.9",
46
+ "@nomicfoundation/hardhat-chai-matchers": "^2.0.0",
47
+ "@nomicfoundation/hardhat-ethers": "^3.0.0",
48
+ "@nomicfoundation/hardhat-network-helpers": "^1.0.0",
49
+ "@nomicfoundation/hardhat-toolbox": "^3.0.0",
50
+ "@nomicfoundation/hardhat-verify": "^1.0.0",
51
+ "@typechain/ethers-v6": "^0.4.0",
52
+ "@typechain/hardhat": "^8.0.0",
53
+ "@types/chai": "^4.2.0",
54
+ "@types/mocha": "^10.0.1",
55
+ "assert": "^2.1.0",
56
+ "buffer": "^6.0.3",
57
+ "chai": "^4.2.0",
58
+ "core-js": "3",
59
+ "cross-env": "^7.0.3",
60
+ "crypto-browserify": "^3.12.1",
61
+ "file-loader": "^6.2.0",
62
+ "hardhat": "^2.17.0",
63
+ "hardhat-gas-reporter": "^1.0.8",
64
+ "path-browserify": "^1.0.1",
65
+ "process": "^0.11.10",
66
+ "rimraf": "^5.0.0",
67
+ "rollup": "^3.0.0",
68
+ "solidity-coverage": "^0.8.1",
69
+ "stream-browserify": "^3.0.0",
70
+ "ts-node": "^10.9.1",
71
+ "typechain": "^8.2.0",
72
+ "typescript": "^5.0.0",
73
+ "url": "^0.11.0",
74
+ "util": "^0.12.4",
75
+ "webpack": "^5.0.0",
76
+ "webpack-cli": "^4.0.0",
77
+ "@rollup/plugin-commonjs": "^25.0.0",
78
+ "@rollup/plugin-node-resolve": "^15.0.0",
79
+ "@rollup/plugin-babel": "^6.0.0",
80
+ "@rollup/plugin-json": "^6.0.0",
81
+ "@rollup/plugin-replace": "^5.0.0",
82
+ "rollup-plugin-terser": "^7.0.2"
83
+ },
84
+ "author": "scobru",
85
+ "repository": {
86
+ "type": "git",
87
+ "url": "git+https://github.com/scobru/gun-eth.git"
88
+ },
89
+ "license": "MIT",
90
+ "keywords": [
91
+ "gundb",
92
+ "web3",
93
+ "evm",
94
+ "ethereum",
95
+ "decentralized",
96
+ "storage",
97
+ "gun",
98
+ "db"
99
+ ],
100
+ "bugs": {
101
+ "url": "https://github.com/scobru/gun-eth/issues"
102
+ },
103
+ "homepage": "https://github.com/scobru/gun-eth#readme",
104
+ "files": [
105
+ "dist"
106
+ ]
107
+ }