-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.22 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.22 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
{
"name": "@summitx/swap-example",
"version": "1.0.0",
"description": "Token swap example for Base Camp testnet using SummitX Smart Router",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"swap": "tsx src/execute-swap-example.ts",
"build": "tsup",
"typecheck": "tsc --noEmit",
"lint": "eslint src --ext .ts,.tsx",
"clean": "rm -rf dist && rm -rf node_modules"
},
"dependencies": {
"@summitx/chains": "0.1.0",
"@summitx/multicall": "3.2.2",
"@summitx/smart-router": "4.9.3",
"@summitx/swap-sdk-core": "1.0.3",
"@summitx/tokens": "0.5.2",
"@summitx/v3-sdk": "3.5.3",
"@summitx/sdk":"5.7.2",
"chalk": "^5.3.0",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"graphql-request": "^5.0.0",
"readline-sync": "^1.4.10",
"viem": "1.15.1"
},
"devDependencies": {
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/node": "^20.10.0",
"@types/readline-sync": "^1.4.8",
"@typescript-eslint/eslint-plugin": "^6.13.0",
"@typescript-eslint/parser": "^6.13.0",
"eslint": "^8.54.0",
"tsup": "^8.0.1",
"tsx": "^4.6.2",
"typescript": "^5.3.2"
},
"engines": {
"node": ">=18.0.0"
}
}