-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.92 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.92 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
{
"name": "@chainlink/ccip-tools-ts",
"version": "1.6.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": "^10.0.1",
"@types/node": "25.6.0",
"c8": "^11.0.0",
"eslint": "^10.2.1",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-import-x": "^4.16.2",
"eslint-plugin-jsdoc": "^62.9.0",
"eslint-plugin-prettier": "^5.5.5",
"eslint-plugin-tsdoc": "^0.5.2",
"glob": "13.0.6",
"prettier": "3.8.3",
"typescript": "6.0.3",
"typescript-eslint": "8.58.2",
"yaml": "2.8.3"
},
"overrides": {
"bigint-buffer": "npm:@trufflesuite/bigint-buffer@1.1.10",
"axios": "1.15.0",
"tar": "7.5.13",
"elliptic": "6.6.1",
"js-yaml": "4.1.1",
"gray-matter": {
"js-yaml": "3.14.2"
},
"postcss": "8.5.10",
"lodash": "4.18.1",
"uuid": "^14.0.0",
"yaml@1": "1.10.3",
"serialize-javascript": "7.0.5",
"webpackbar": "7.0.0"
}
}