-
Notifications
You must be signed in to change notification settings - Fork 280
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.04 KB
/
Copy pathpackage.json
File metadata and controls
76 lines (76 loc) · 2.04 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
{
"name": "@layerzerolabs/devtools-move",
"version": "1.0.18",
"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.*",
"./cli/**/*",
"./types/**/*",
"./sdk/**/*",
"./tasks/**/*"
],
"scripts": {
"prebuild": "tsc -noEmit",
"build": "$npm_execpath tsup --clean",
"clean": "rm -rf dist",
"dev": "$npm_execpath tsup --watch",
"lint": "$npm_execpath eslint '**/*.{js,ts,json}'",
"lint:fix": "eslint --fix '**/*.{js,ts,json}'",
"test": "INITIA_CHAIN_ID=\"initiation-2\" jest --testPathIgnorePatterns=\"jest/e2e/\" --passWithNoTests",
"test:e2e": "INITIA_CHAIN_ID=\"initiation-2\" jest jest/e2e/"
},
"dependencies": {
"inquirer": "^12.3.3"
},
"devDependencies": {
"@aptos-labs/ts-sdk": "^1.33.1",
"@initia/initia.js": "^1.0.0",
"@jest/globals": "^29.7.0",
"@layerzerolabs/devtools-extensible-cli": "^0.0.7",
"@layerzerolabs/io-devtools": "^0.3.2",
"@layerzerolabs/lz-definitions": "^3.0.148",
"@layerzerolabs/lz-evm-sdk-v2": "^3.0.148",
"@layerzerolabs/lz-serdes": "^3.0.19",
"@layerzerolabs/lz-v2-utilities": "^3.0.148",
"@layerzerolabs/toolbox-hardhat": "~0.6.13",
"@types/argparse": "^2.0.17",
"@types/chai": "^4.3.11",
"@types/jest": "~30.0.0",
"@types/node": "~18.18.14",
"argparse": "^2.0.1",
"base-x": "^5.0.0",
"bs58": "^6.0.0",
"chai": "^4.4.1",
"depcheck": "^1.4.7",
"dotenv": "^16.4.7",
"ethers": "^5.7.2",
"hardhat": "^2.22.10",
"jest": "~30.2.0",
"ts-jest": "^29.4.5",
"ts-node": "^10.9.2",
"tsup": "^8.0.1",
"typescript": "^5.4.4",
"yaml": "^2.6.1"
},
"engines": {
"node": ">=18.16.0"
},
"publishConfig": {
"access": "public"
}
}