gun-eth 1.5.0 → 1.5.3

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