-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathpackage.json
65 lines (65 loc) · 2 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
{
"name": "@wormhole-foundation/example-liquidity-layer-solana",
"version": "0.4.0",
"main": "dist/cjs/index.js",
"types": "dist/cjs/index.d.ts",
"module": "dist/esm/index.js",
"files": [
"dist/cjs",
"dist/esm"
],
"exports": {
".": {
"import": "./dist/esm/index.js",
"require": "./dist/cjs/index.js",
"types": "./dist/cjs/index.d.ts"
},
"./*": {
"import": "./dist/esm/*/index.js",
"require": "./dist/cjs/*/index.js",
"types": "./dist/cjs/*/index.d.ts"
}
},
"scripts": {
"lint:fix": "prettier */*.js \"*/**/*{.js,.ts}\" -w",
"lint": "prettier */*.js \"*/**/*{.js,.ts}\" --check",
"build:esm": "npx tsc -p tsconfig.esm.json",
"build:cjs": "npx tsc -p tsconfig.cjs.json",
"build": "npm run build:esm && npm run build:cjs",
"clean": "rm -rf dist && rm -f ./*.tsbuildinfo && rm -rf node_modules"
},
"dependencies": {
"@certusone/wormhole-spydk": "^0.0.1",
"@coral-xyz/anchor": "^0.30.1",
"@solana/spl-token": "^0.4.8",
"@solana/spl-token-group": "^0.0.6",
"@solana/spl-token-metadata": "^0.1.5",
"@solana/web3.js": "^1.95.3",
"@types/node-fetch": "^2.6.11",
"@wormhole-foundation/example-liquidity-layer-definitions": "0.4.0",
"@wormhole-foundation/sdk-base": "^1.4.4",
"@wormhole-foundation/sdk-definitions": "^1.4.4",
"@wormhole-foundation/sdk-evm": "^1.4.4",
"@wormhole-foundation/sdk-solana": "^1.4.4",
"@wormhole-foundation/sdk-solana-core": "^1.4.4",
"anchor-0.29.0": "npm:@coral-xyz/anchor@^0.29.0",
"bn.js": "^5.2.1",
"dotenv": "^16.4.1",
"sha3": "^2.1.4",
"winston": "^3.13.0",
"yargs": "^17.7.2"
},
"devDependencies": {
"@types/bn.js": "^5.1.0",
"@types/chai": "^4.3.4",
"@types/chai-as-promised": "^7.1.5",
"@types/mocha": "^10.0.1",
"@types/node": "^18.14.5",
"@types/yargs": "^17.0.24",
"chai": "^4.3.7",
"chai-as-promised": "^7.1.1",
"mocha": "^10.0.0",
"ts-mocha": "^10.0.0",
"ts-results": "^3.3.0"
}
}