-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 1.85 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 1.85 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "online-ethereum-abi-encoder-decoder",
"version": "2.1.0",
"description": "A quick online tool to abi-encode constructor arguments used in ethereum's solidity",
"type": "module",
"scripts": {
"build": "cross-env NODE_ENV=production react-router build",
"dev": "react-router dev",
"start": "cross-env NODE_ENV=production react-router-serve ./build/server/index.js",
"clean": "rm -rf node_modules build",
"typecheck": "react-router typegen && tsc"
},
"homepage": "https://adibas03.github.io/online-ethereum-abi-encoder-decoder/",
"repository": {
"type": "git",
"url": "git+https://github.com/adibas03/online-ethereum-abi-encoder.git"
},
"keywords": [
"etherscan",
"etherscan",
"constructor",
"abi",
"encoder",
"online",
"ethereum",
"decoder",
"solidity"
],
"author": {
"name": "adibas03",
"email": "adibas03@gmail.com"
},
"dependencies": {
"@react-router/node": "^7.1.1",
"@react-router/serve": "^7.1.1",
"isbot": "^5.1.17",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-router": "^7.1.1",
"web3-eth": "^4.11.1",
"web3-eth-abi": "^4.4.1"
},
"devDependencies": {
"@react-router/dev": "^7.1.1",
"@types/node": "^20",
"@types/react": "^19.0.1",
"@types/react-dom": "^19.0.1",
"autoprefixer": "^10.4.20",
"cross-env": "^7.0.3",
"postcss": "^8.4.49",
"tailwindcss": "^3.4.16",
"typescript": "^5.7.2",
"vite": "^5.4.11",
"vite-tsconfig-paths": "^5.1.4"
},
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/adibas03/online-ethereum-abi-encoder/issues"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}