-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 957 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
44
45
46
{
"name": "@logrus/ton-cli",
"version": "1.0.2",
"description": "Simple interactive CLI for basic operations with TON blockchain.",
"repository": {
"type": "git",
"url": "https://github.com/logrus-dev/ton-cli.git"
},
"keywords": [
"TON",
"Cryptocurrency",
"Telegram",
"CLI",
"npx"
],
"main": "dist/index.js",
"bin": {
"ton-cli": "dist/index.js"
},
"files": [
"dist/**/*",
"Readme.md"
],
"scripts": {
"build": "tsc",
"start": "tsc && node ./dist/index.js",
"prepare": "tsc"
},
"author": "logrus.dev",
"license": "GPL-3.0-only",
"dependencies": {
"buffer": "^6.0.3",
"convict": "^6.2.3",
"inquirer": "^8.2.5",
"ora": "^5.4.1",
"ton": "^12.1.5",
"uuid": "^9.0.0"
},
"devDependencies": {
"@types/convict": "^6.1.1",
"@types/inquirer": "^9.0.3",
"@types/node": "^18.11.11",
"@types/uuid": "^9.0.0",
"typescript": "^4.9.3"
}
}