-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
30 lines (30 loc) · 949 Bytes
/
package.json
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
{
"name": "@zoltu/ethereum-transactions",
"description": "A low dependency library that can encode, decode, and sign Ethereum transactions.",
"author": "Micah Zoltu",
"license": "Unlicense",
"bugs": { "url": "https://github.com/Zoltu/ethereum-transactions/issues" },
"homepage": "https://github.com/Zoltu/ethereum-transactions#readme",
"keywords": [ "ethereum", "transaction" ],
"repository": { "type": "git", "url": "git+https://github.com/Zoltu/ethereum-transactions.git" },
"main": "output/index.js",
"exports": {
".": "./output/index.js",
"./converters.js": "./output/converters.js"
},
"type": "module",
"dependencies": {
"@noble/hashes": "1.3.0",
"@noble/secp256k1": "2.0.0",
"@zoltu/rlp-encoder": "2.0.6"
},
"devDependencies": {
"@types/node": "18.16.2",
"typescript": "5.0.4",
"micro-should": "0.4.0"
},
"scripts": {
"build": "tsc",
"test": "tsc && node --enable-source-maps ./output/tests/index.js"
}
}