forked from tonwhales/ton-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 1.73 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "ton-cli",
"version": "3.1.2",
"repository": "https://github.com/tonwhales/ton-cli.git",
"author": "Whales Corp. <[email protected]>",
"license": "MIT",
"main": "dist/index.js",
"bin": {
"ton-cli": "entry.sh"
},
"files": [
"dist",
"entry.sh"
],
"scripts": {
"pkg": "rm -fr dist && rm -fr build && tsc --declaration && pkg .",
"build": "rm -fr dist && tsc --declaration",
"test": "jest --verbose --runInBand",
"release": "yarn build && yarn test && yarn publish",
"cli": "yarn build && node ./dist/index.js --test"
},
"devDependencies": {
"@types/jest": "27.0.1",
"@types/node": "16.7.10",
"@types/prompt": "^1.1.1",
"@types/qrcode-terminal": "^0.12.0",
"@types/yargs": "^17.0.2",
"jest": "27.1.0",
"jest-mock": "27.1.0",
"pkg": "5.6.0",
"ts-jest": "27.0.5",
"ts-loader": "9.2.5",
"typescript": "4.4.2"
},
"dependencies": {
"@ledgerhq/hw-transport-node-hid-noevents": "^6.27.1",
"@openland/patterns": "^0.0.2",
"@types/bn.js": "^5.1.0",
"@types/cli-table": "^0.3.0",
"cli-table": "^0.3.6",
"date-fns": "^2.28.0",
"enquirer": "^2.3.6",
"fp-ts": "^2.11.2",
"io-ts": "^2.2.16",
"ora": "5.4.1",
"prompt": "^1.2.0",
"qrcode-terminal": "^0.12.0",
"ton": "11.13.0",
"ton-contracts": "2.3.2",
"ton-crypto": "2.1.0",
"ton-ledger": "^2.2.0",
"yargs": "^17.1.1"
},
"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-pkg"
}
}