-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.12 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
47
48
{
"name": "ledger-ton-cli",
"version": "1.0.0",
"main": "index.js",
"repository": "https://github.com/ton-foundation/ledger-ton-cli.git",
"author": "Steve Korshakov <steve@korshakov.com>",
"license": "MIT",
"scripts": {
"build": "rm -fr dist && rm -fr build && tsc && pkg .",
"dev": "ts-node ./source/index.ts"
},
"dependencies": {
"@ledgerhq/hw-transport-node-hid": "^6.27.1",
"@types/bn.js": "^5.1.0",
"bn.js": "^5.2.0",
"date-fns": "2.28.0",
"enquirer": "2.3.6",
"ora": "5.4.1",
"ton": "11.13.0",
"ton-contracts": "^3.1.0",
"ton-crypto": "3.2.0"
},
"devDependencies": {
"@types/cli-table": "0.3.0",
"@types/node": "17.0.33",
"@types/qrcode-terminal": "0.12.0",
"pkg": "5.6.0",
"ts-node": "10.7.0",
"typescript": "4.6.4"
},
"pkg": {
"scripts": [
"source/**/*.js"
],
"assets": [
"node_modules/fp-ts/**/*"
],
"targets": [
"node16-linux-arm64",
"node16-linux-x64",
"node16-macos-arm64",
"node16-macos-x64",
"node16-win-arm64",
"node16-win-x64"
],
"outputPath": "dist"
}
}