-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
51 lines (51 loc) · 1.34 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
{
"name": "@mayanfinance/wormhole-sdk-route",
"version": "1.1.0",
"license": "Apache-2.0",
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.js",
"types": "./dist/esm/index.d.ts",
"author": "",
"description": "This package implements an AutomaticRoute for use with the Wormhole Typescript SDK",
"files": [
"dist"
],
"keywords": [
"wormhole",
"sdk",
"typescript",
"connect"
],
"engines": {
"node": ">=16"
},
"sideEffects": false,
"scripts": {
"build:cjs": "tsc -p ./tsconfig.cjs.json",
"build:esm": "tsc -p ./tsconfig.esm.json",
"build": "npm run build:cjs && npm run build:esm",
"publish": "npm publish --access public --tag $TAG",
"pub:beta": "TAG=beta npm run publish",
"pub:latest": "TAG=latest npm run publish",
"docs": "typedoc",
"cache": "npx tsx scripts/cache_tokens.ts",
"example:swap": "npx tsx examples/swap.ts"
},
"dependencies": {
"axios": "^1.4.0",
"@mayanfinance/swap-sdk": "9.3.0"
},
"peerDependencies": {
"@wormhole-foundation/sdk-connect": "^1.0.0",
"@wormhole-foundation/sdk-evm": "^1.0.0",
"@wormhole-foundation/sdk-solana": "^1.0.0",
"@solana/web3.js": "^1.95.8",
"ethers": "^6"
},
"devDependencies": {
"@types/node": "^20.11.6",
"dotenv": "^16.4.0",
"tsx": "^4.7.0",
"typescript": "^5.3.3"
}
}