-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.9 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.9 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
{
"name": "@chainlink/ccip-tools-ts",
"version": "1.2.0",
"description": "CLI and library to interact with CCIP",
"author": "Chainlink devs",
"license": "MIT",
"repository": "git://github.com/smartcontractkit/ccip-tools-ts.git",
"type": "module",
"workspaces": [
"ccip-sdk",
"ccip-cli",
"ccip-api-ref"
],
"scripts": {
"test": "npm run clean:coverage && c8 npm test -w ccip-sdk -w ccip-cli",
"test:unit": "npm run clean:coverage && c8 npm test -w ccip-sdk",
"test:e2e": "npm run clean:coverage && c8 npm test -w ccip-cli",
"lint": "npm run lint --workspaces",
"lint:fix": "npm run lint:fix --workspaces",
"typecheck": "npm run typecheck --workspaces",
"check": "npm run check --workspaces",
"generate": "node ./generate.cjs `grep -lrn '^\\s*//\\s*generate\\b' ./ccip-sdk/src ./ccip-cli/src`",
"clean:coverage": "rm -rfv ./.coverage ./.c8_output",
"clean": "npm run clean:coverage && npm run clean -w ccip-sdk -w ccip-cli",
"build": "npm run clean && npm run generate && npm run build -w ccip-sdk -w ccip-cli",
"prepare": "npm run build"
},
"devDependencies": {
"@eslint/js": "^9.39.4",
"@types/node": "25.4.0",
"c8": "^11.0.0",
"eslint": "^9.39.4",
"eslint-config-prettier": "^10.1.8",
"eslint-import-resolver-typescript": "^4.4.4",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-jsdoc": "^62.7.1",
"eslint-plugin-prettier": "^5.5.5",
"eslint-plugin-tsdoc": "^0.5.2",
"glob": "13.0.6",
"prettier": "3.8.1",
"typescript": "5.9.3",
"typescript-eslint": "8.57.0",
"yaml": "2.8.2"
},
"overrides": {
"bigint-buffer": "npm:@trufflesuite/bigint-buffer@1.1.10",
"@ton/core": "0.63.0",
"axios": "^1.13.5",
"tar": "7.5.11",
"serialize-javascript": "7.0.4",
"elliptic": "6.6.1",
"lodash": "4.17.23",
"js-yaml": "4.1.1",
"gray-matter": {
"js-yaml": "3.14.2"
}
}
}