-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
46 lines (46 loc) · 1.08 KB
/
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
44
45
46
{
"name": "@daochild/tronweb-typescript",
"version": "1.2.3",
"description": "Typescript support package for tronweb library ^4.x, ^5.x",
"types": "./dist/index",
"type": "module",
"keywords": [
"tron",
"tronweb",
"typescript",
"tronweb-typescript",
"tronweb-ts",
"types-tronweb"
],
"scripts": {
"watch": "npx nodemon -w ./src -e *.ts --exec npx tsx ./src/index.ts",
"build": "rimraf ./dist && tsc",
"test": "npx tsx ./tests/test.ts"
},
"contributors": [
{
"name": "Pavlo Bolhar",
"url": "https://github.com/daochild",
"githubUsername": "daochild"
}
],
"author": "Pavlo Bolhar <paul.bolhar@gmail.com>",
"license": "MIT",
"devDependencies": {
"@noble/secp256k1": "^1.7.1",
"@types/node": "^22.5.4",
"nodemon": "^3.1.4",
"rimraf": "^6.0.1",
"tronweb": "^5.3.2",
"ts-node": "^10.9.2",
"tslib": "^2.7.0",
"typescript": "^5.5.4"
},
"dependencies": {
"bignumber.js": "^9.1.2"
},
"repository": {
"type": "git",
"url": "https://github.com/daochild/tronweb-typescript"
}
}