-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
72 lines (72 loc) · 2.04 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
{
"name": "@chainlink/ccip-tools-ts",
"version": "0.1.3",
"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.16.0",
"@types/eslint__js": "8.42.3",
"@types/jest": "29.5.14",
"@types/node": "22.10.1",
"@types/yargs": "17.0.33",
"eslint": "9.16.0",
"eslint-config-prettier": "9.1.0",
"eslint-import-resolver-typescript": "3.7.0",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-prettier": "5.2.1",
"ethers-abitype": "1.0.3",
"glob": "11.0.0",
"jest": "29.7.0",
"prettier": "3.4.2",
"ts-jest": "29.2.5",
"tsx": "4.19.2",
"typescript": "5.7.2",
"typescript-eslint": "8.18.0",
"yaml": "2.6.1"
},
"dependencies": {
"@inquirer/prompts": "7.2.0",
"abitype": "1.0.7",
"ethers": "6.13.4",
"tslib": "2.8.1",
"yargs": "17.7.2"
},
"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
}
}