-
Notifications
You must be signed in to change notification settings - Fork 52
/
Copy pathpackage.json
74 lines (74 loc) · 2.16 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
66
67
68
69
70
71
72
73
74
{
"name": "@wormhole-foundation/sdk-evm-ntt",
"version": "0.5.0",
"repository": {
"type": "git",
"url": "git+https://github.com/wormhole-foundation/native-token-transfers.git"
},
"bugs": {
"url": "https://github.com/wormhole-foundation/native-token-transfers"
},
"directories": {
"test": "__tests__"
},
"license": "Apache-2.0",
"main": "./dist/cjs/index.js",
"types": "./dist/cjs/index.d.ts",
"module": "./dist/esm/index.js",
"description": "NTT SDK for EVM chains",
"files": [
"dist/esm",
"dist/cjs"
],
"keywords": [
"wormhole",
"sdk",
"typescript",
"ntt",
"evm"
],
"engines": {
"node": ">=16"
},
"sideEffects": true,
"scripts": {
"build:cjs": "tsc -p ./tsconfig.cjs.json && echo '{\"type\":\"commonjs\"}' > dist/cjs/package.json",
"build:esm": "tsc -p ./tsconfig.esm.json",
"build": "npm run build:esm && npm run build:cjs",
"rebuild": "npm run clean && npm run build",
"clean": "rm -rf ./dist",
"generate:test": "typechain --node16-modules --target ethers-v6 --out-dir ethers-ci-contracts '../out/**/*.json'",
"generate:slim": "ABI_VERSION=`tsx scripts/readVersion.ts` && typechain --node16-modules --target ethers-v6 --out-dir src/ethers-contracts/$ABI_VERSION '../out/?(WormholeTransceiver.sol|NttManager.sol)/*.json'",
"generate": "npm run generate:slim",
"build:contracts": "cd ../.. && make build-evm-prod",
"test": "jest --config ./jest.config.ts"
},
"dependencies": {
"@wormhole-foundation/sdk-definitions-ntt": "0.5.0",
"ethers": "^6.5.1"
},
"peerDependencies": {
"@wormhole-foundation/sdk-base": "^1.0.0",
"@wormhole-foundation/sdk-definitions": "^1.0.0",
"@wormhole-foundation/sdk-evm": "^1.0.0",
"@wormhole-foundation/sdk-evm-core": "^1.0.0"
},
"devDependencies": {
"@typechain/ethers-v6": "^0.5.1",
"tsx": "^4.7.2",
"typechain": "^8.3.2"
},
"type": "module",
"exports": {
".": {
"import": {
"types": "./dist/esm/index.d.ts",
"default": "./dist/esm/index.js"
},
"require": {
"types": "./dist/cjs/index.d.ts",
"default": "./dist/cjs/index.js"
}
}
}
}