-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
62 lines (62 loc) · 1.46 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
{
"name": "tonnel-cli",
"version": "0.1.5",
"repository": {
"type": "git",
"url": "https://github.com/nonam3e/tonnel-cli.git"
},
"disableExperimentalSEAWarning": true,
"bin": {
"tonnel-cli": "./dist/cli.js"
},
"license": "MIT",
"files": [
"dist/**/*",
"build/**/*"
],
"scripts": {
"clean": "rimraf ./dist/",
"dev": "ts-node src/cli/cli.ts",
"bundle": "npm run clean && tsup",
"upload": "npm run bundle && npm publish"
},
"devDependencies": {
"@ton/core": "^0.49.2",
"@ton/crypto": "^3.2.0",
"@ton/ton": "^13.4.1",
"@types/figlet": "^1.5.8",
"@types/inquirer": "^8.2.6",
"@types/node": "^20.2.5",
"@types/qrcode-terminal": "^0.12.0",
"@types/snarkjs": "^0.7.8",
"circomlib": "^0.5.2",
"ethers": "^5.0.26",
"pkg": "^4.4.0",
"prettier": "^3.0.3",
"snarkjs": "^0.4.4",
"source-map-support": "^0.5.21",
"typescript": "^4.9.5"
},
"peerDependencies": {
"@ton/core": ">=0.49.2",
"@ton/crypto": ">=3.2.0",
"@ton/ton": ">=13.4.1"
},
"dependencies": {
"@orbs-network/ton-access": "^2.3.3",
"@tonconnect/sdk": "^2.1.3",
"arg": "^5.0.2",
"axios": "^1.6.7",
"chalk": "^4.1.0",
"dotenv": "^16.1.4",
"figlet": "^1.7.0",
"fixed-merkle-tree": "^0.7.3",
"fs": "^0.0.1-security",
"inquirer": "^8.2.5",
"kleur": "^4.1.5",
"qrcode-terminal": "^0.12.0",
"ton-x": "^2.1.0",
"ts-node": "^10.9.1",
"tsup": "^8.0.2"
}
}