-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
77 lines (77 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
75
76
77
{
"name": "@chainlink/ccip-tools-ts",
"version": "0.2.0",
"description": "CLI and library to interact with CCIP",
"author": "Chainlink devs",
"license": "MIT",
"type": "module",
"main": "dist/lib/index.js",
"module": "dist/lib/index.js",
"types": "dist/lib/index.d.ts",
"bin": "dist/ccip-tools-ts",
"scripts": {
"test": "jest",
"lint": "prettier --check ./src && eslint ./src",
"lint:fix": "prettier --write ./src && eslint --fix ./src",
"typecheck": "tsc --noEmit",
"generate": "node ./generate.cjs ./src/abi/* ./src/lib/selectors.ts ./src/index.ts",
"build": "npm run clean && npm run generate && tsc -p ./tsconfig.build.json && npm run make-script",
"make-script": "sed -e '1s|#!/.*|#!/usr/bin/env node|' ./dist/index.js > ./dist/ccip-tools-ts && chmod +x ./dist/ccip-tools-ts && rm -v ./dist/index.js",
"start": "tsx src",
"clean": "rm -rfv ./dist ./coverage",
"prepare": "npm run build"
},
"files": [
"./dist/**"
],
"devDependencies": {
"@eslint/js": "9.21.0",
"@types/jest": "29.5.14",
"@types/node": "22.13.9",
"@types/yargs": "17.0.33",
"eslint": "9.21.0",
"eslint-config-prettier": "10.0.2",
"eslint-import-resolver-typescript": "3.8.3",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-prettier": "5.2.3",
"ethers-abitype": "1.0.3",
"glob": "11.0.1",
"jest": "29.7.0",
"prettier": "3.5.3",
"ts-jest": "29.2.6",
"tsx": "4.19.3",
"typescript": "5.8.2",
"typescript-eslint": "8.26.0"
},
"dependencies": {
"@inquirer/prompts": "7.3.2",
"@xlabs-xyz/ledger-signer-ethers-v6": "^0.0.1",
"abitype": "1.0.8",
"ethers": "6.13.5",
"tslib": "2.8.1",
"yaml": "2.7.0",
"yargs": "17.7.2"
},
"overrides": {
"@xlabs-xyz/ledger-signer-ethers-v6": {
"ethers": "$ethers"
}
},
"prettier": {
"trailingComma": "all",
"tabWidth": 2,
"semi": false,
"singleQuote": true,
"printWidth": 100
},
"jest": {
"preset": "ts-jest/presets/default-esm",
"modulePathIgnorePatterns": [
"<rootDir>/dist/"
],
"moduleNameMapper": {
"(.+)\\.js": "$1"
},
"collectCoverage": true
}
}