-
Notifications
You must be signed in to change notification settings - Fork 280
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.52 KB
/
Copy pathpackage.json
File metadata and controls
84 lines (84 loc) · 2.52 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
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
75
76
77
78
79
80
81
82
83
84
{
"name": "@layerzerolabs/protocol-devtools-evm",
"version": "5.0.3",
"description": "Utilities for LayerZero EVM protocol contracts",
"repository": {
"type": "git",
"url": "git+https://github.com/LayerZero-Labs/devtools.git",
"directory": "packages/protocol-devtools-evm"
},
"license": "MIT",
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.js",
"import": "./dist/index.mjs"
},
"./*": {
"types": "./dist/*.d.ts",
"require": "./dist/*.js",
"import": "./dist/*.mjs"
}
},
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"./dist/index.*"
],
"scripts": {
"prebuild": "$npm_execpath tsc --noEmit",
"build": "$npm_execpath tsup",
"clean": "rm -rf dist",
"dev": "$npm_execpath tsup --watch",
"lint": "$npm_execpath eslint '**/*.{js,ts,json}'",
"lint:fix": "eslint --fix '**/*.{js,ts,json}'",
"test": "$npm_execpath test:jest",
"test:jest": "jest --ci"
},
"dependencies": {
"p-memoize": "~4.0.4"
},
"devDependencies": {
"@ethersproject/abstract-provider": "^5.7.0",
"@ethersproject/abstract-signer": "^5.7.0",
"@ethersproject/bignumber": "^5.7.0",
"@ethersproject/constants": "^5.7.0",
"@ethersproject/contracts": "^5.7.0",
"@ethersproject/providers": "^5.7.2",
"@layerzerolabs/devtools": "~2.0.4",
"@layerzerolabs/devtools-evm": "~3.0.2",
"@layerzerolabs/io-devtools": "~0.3.2",
"@layerzerolabs/lz-definitions": "^3.0.148",
"@layerzerolabs/lz-evm-sdk-v2": "^3.0.148",
"@layerzerolabs/protocol-devtools": "~3.0.2",
"@layerzerolabs/test-devtools": "~0.4.7",
"@swc/core": "^1.4.0",
"@swc/jest": "^0.2.36",
"@types/jest": "^29.5.12",
"fast-check": "^3.15.1",
"jest": "^29.7.0",
"ts-node": "^10.9.2",
"tslib": "~2.6.2",
"tsup": "~8.0.1",
"typescript": "^5.4.4",
"zod": "^3.22.4"
},
"peerDependencies": {
"@ethersproject/abstract-provider": "^5.7.0",
"@ethersproject/abstract-signer": "^5.7.0",
"@ethersproject/bignumber": "^5.7.0",
"@ethersproject/constants": "^5.7.0",
"@ethersproject/contracts": "^5.7.0",
"@ethersproject/providers": "^5.7.0",
"@layerzerolabs/devtools": "~2.0.4",
"@layerzerolabs/devtools-evm": "~3.0.2",
"@layerzerolabs/io-devtools": "~0.3.2",
"@layerzerolabs/lz-definitions": "^3.0.148",
"@layerzerolabs/protocol-devtools": "~3.0.2",
"zod": "^3.22.4"
},
"publishConfig": {
"access": "public"
}
}