evm-transactions-tools 0.0.1

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 ADDED
@@ -0,0 +1,108 @@
1
+ { "name": "evm-transactions-tools",
2
+ "version":
3
+ "0.0.1",
4
+ "description":
5
+ "Programs and libraries to interact with Ethereum Virtual Machine (EVM) networks transactions in native computer applications, in particular those written using the LibEVM library and using the EVM Contracts Tools.",
6
+ "funding": {
7
+ "type":
8
+ "patreon",
9
+ "url":
10
+ "https://patreon.com/tallero"
11
+ },
12
+ "man": [
13
+ "./man/evm-transaction-get.1"
14
+ ],
15
+ "files": [
16
+ "AUTHORS.rst",
17
+ "COPYING",
18
+ "README.md",
19
+ "lib",
20
+ "libevm-transactions-tools",
21
+ "fs-worker.js",
22
+ "fs-worker.webpack.config.js",
23
+ "index.html",
24
+ "package.json",
25
+ "serve.json",
26
+ "webpack.config.js"
27
+ ],
28
+ "keywords": [
29
+ "ur",
30
+ "themartiancompany",
31
+ "dogeos",
32
+ "ethereum"
33
+ ],
34
+ "homepage":
35
+ "https://github.com/themartiancompany/evm-transactions-tools",
36
+ "bugs": {
37
+ "url":
38
+ "https://github.com/themartiancompany/evm-transactions-tools/issues"
39
+ },
40
+ "repository": {
41
+ "type":
42
+ "git",
43
+ "url":
44
+ "git+https://github.com/themartiancompany/evm-transactions-tools.git"
45
+ },
46
+ "license":
47
+ "AGPL-3.0-or-later",
48
+ "author": {
49
+ "name":
50
+ "Pellegrino Prevete",
51
+ "email":
52
+ "pellegrinoprevete@gmail.com",
53
+ "url":
54
+ "https://github.com/tallero"
55
+ },
56
+ "devDependencies": {
57
+ "crash-js-webpack":
58
+ "^0.0.3",
59
+ "flatted":
60
+ "3.4.1",
61
+ "eslint":
62
+ "^10.0.3",
63
+ "globals":
64
+ "^17.3.0",
65
+ "@eslint/js":
66
+ "^10.0.1",
67
+ "safely-serve":
68
+ "^0.0.9",
69
+ "webpack":
70
+ "^5.102.1",
71
+ "webpack-cli":
72
+ "^6.0.1"
73
+ },
74
+ "dependencies": {
75
+ "crash-js":
76
+ "^0.1.88",
77
+ "ethereum-data":
78
+ "^0.0.1",
79
+ "ethers":
80
+ "^6.13.2",
81
+ "evm-chains-info":
82
+ "^0.0.1",
83
+ "libevm":
84
+ "^0.0.1",
85
+ "yargs":
86
+ "18.0.0"
87
+ },
88
+ "type":
89
+ "commonjs",
90
+ "main":
91
+ "libevm-transactions-tools",
92
+ "scripts": {
93
+ "build-fs-worker":
94
+ "npx webpack --mode 'production' --config 'fs-worker.webpack.config.cjs' --stats-error-details",
95
+ "build-lib":
96
+ "npx webpack --mode 'production' --config 'webpack.config.cjs' --stats-error-details",
97
+ "build":
98
+ "npm run lint && npm run build-fs-worker && npm run build-lib",
99
+ "lint":
100
+ "npx eslint .",
101
+ "publish-pnm":
102
+ "npm run build && npm publish --access public",
103
+ "start":
104
+ "npx safely-serve --help # index.html --port 3000 --https --no-cache",
105
+ "test":
106
+ "echo \"Error: no test specified\" && exit 1"
107
+ }
108
+ }