|
4 | 4 | "author": "Wormhole Contributors",
|
5 | 5 | "license": "Apache-2.0",
|
6 | 6 | "main": "./dist/cjs/index.js",
|
7 |
| - "types":"./dist/cjs/index.d.ts", |
| 7 | + "types": "./dist/cjs/index.d.ts", |
8 | 8 | "module": "./dist/esm/index.js",
|
| 9 | + "files": [ |
| 10 | + "dist/cjs", |
| 11 | + "dist/esm" |
| 12 | + ], |
9 | 13 | "scripts": {
|
10 | 14 | "build:esm": "tsc -p tsconfig.esm.json",
|
11 | 15 | "build:cjs": "tsc -p tsconfig.cjs.json",
|
12 | 16 | "build": "npm run build:esm && npm run build:cjs",
|
13 | 17 | "generate": "typechain --target=ethers-v5 --out-dir=ts/src/types out/*/*.json",
|
14 |
| - "clean":"rm -rf dist && rm -rf node_modules" |
| 18 | + "clean": "rm -rf dist && rm -rf node_modules && rm -f ./*.tsbuildinfo" |
| 19 | + }, |
| 20 | + "exports": { |
| 21 | + ".": { |
| 22 | + "import": "./dist/esm/index.js", |
| 23 | + "require": "./dist/cjs/index.js", |
| 24 | + "types": "./dist/cjs/index.d.ts" |
| 25 | + }, |
| 26 | + "./*": { |
| 27 | + "import": "./dist/esm/*/index.js", |
| 28 | + "require": "./dist/cjs/*/index.js", |
| 29 | + "types": "./dist/cjs/*/index.d.ts" |
| 30 | + } |
15 | 31 | },
|
16 | 32 | "dependencies": {
|
17 |
| - "@wormhole-foundation/sdk-base":"^0.7.0-beta.4", |
18 |
| - "@wormhole-foundation/sdk-definitions":"^0.7.0-beta.4", |
19 |
| - "@wormhole-foundation/sdk-evm":"^0.7.0-beta.4", |
20 |
| - "@wormhole-foundation/example-liquidity-layer-definitions":"0.0.1", |
| 33 | + "@wormhole-foundation/sdk-base": "^0.7.0-beta.6", |
| 34 | + "@wormhole-foundation/sdk-definitions": "^0.7.0-beta.6", |
| 35 | + "@wormhole-foundation/sdk-evm": "^0.7.0-beta.6", |
| 36 | + "@wormhole-foundation/example-liquidity-layer-definitions": "0.0.1", |
21 | 37 | "ethers": "^5.7.2"
|
22 | 38 | },
|
23 | 39 | "devDependencies": {
|
24 |
| - "envfile": "^6.18.0", |
| 40 | + "envfile": "^7.1.0", |
25 | 41 | "@typechain/ethers-v5": "^10.2.0",
|
26 | 42 | "@types/chai": "^4.3.4",
|
27 | 43 | "@types/mocha": "^10.0.1",
|
28 | 44 | "@types/node": "^18.14.5",
|
29 | 45 | "chai": "^4.3.7",
|
30 | 46 | "dotenv": "^16.3.1",
|
31 |
| - "ethers": "^5.7.2", |
32 | 47 | "mocha": "^10.0.0",
|
33 | 48 | "prettier": "^2.8.7",
|
34 | 49 | "prettier-plugin-solidity": "^1.1.3",
|
|
0 commit comments