-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 921 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
31
32
33
34
35
36
37
38
39
40
41
42
43
{
"name": "send-tx",
"version": "0.0.1",
"description": "Sign & send Ethereum transactions with ease.",
"type": "module",
"exports": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"build": "rollup -c"
},
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/talentlessguy/send-tx.git"
},
"keywords": [
"eth",
"ethereum",
"blockchain",
"ethers",
"sign-tx",
"tx",
"transactions"
],
"author": "v1rtl",
"license": "MIT",
"bugs": {
"url": "https://github.com/talentlessguy/send-tx/issues"
},
"homepage": "https://github.com/talentlessguy/send-tx#readme",
"devDependencies": {
"@rollup/plugin-typescript": "^8.2.5",
"rollup": "^2.56.3",
"tslib": "^2.3.1",
"typescript": "^4.4.3"
},
"dependencies": {
"@ethereumjs/tx": "^3.3.0",
"@ethersproject/bytes": "^5.4.0"
}
}