-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.21 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.21 KB
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
{
"name": "@mytonswap/sdk",
"description": "MyTonSwap Dex Aggregator SDK",
"author": {
"name": "MyTonSwap",
"url": "https://github.com/mytonswap"
},
"homepage": "https://docs.mytonswap.com",
"contributors": [
{
"email": "ho3einwave@gmail.com",
"name": "Ho3einWave"
}
],
"repository": {
"type": "git",
"url": "git+https://github.com/MyTonSwap/sdk.git"
},
"main": "dist/index.cjs",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"keywords": [
"MyTonSwap",
"TON",
"The Open Network",
"TON Blockchain",
"SDK",
"Swap",
"Telegram",
"stonfi",
"ston.fi",
"dedust",
"DEX",
"DeFi"
],
"version": "1.1.2",
"type": "module",
"scripts": {
"build": "tsup"
},
"devDependencies": {
"@types/bun": "^1.1.10",
"@types/lodash": "^4.17.9",
"tsup": "^8.3.0"
},
"peerDependencies": {
"typescript": "^5.0.0"
},
"dependencies": {
"@ton/ton": "^15.0.0",
"axios": "^1.7.7",
"axios-retry": "^4.5.0",
"lodash": "^4.17.21"
}
}