-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.23 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 2.23 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
{
"name": "ccip-sdk-examples",
"version": "1.0.0",
"description": "Educational examples for @chainlink/ccip-sdk - Cross-Chain Interoperability Protocol",
"private": true,
"type": "module",
"packageManager": "pnpm@10.9.0",
"engines": {
"node": ">=22.0.0"
},
"scripts": {
"dev:01": "pnpm -F 01-getting-started dev",
"dev:02": "pnpm -F 02-evm-simple-bridge dev",
"dev:03": "pnpm -F 03-multichain-bridge-dapp dev",
"dev:04": "pnpm -F 04-hardhat-ccip dev",
"prod:02": "pnpm -F 02-evm-simple-bridge build && pnpm -F 02-evm-simple-bridge preview",
"prod:03": "pnpm -F 03-multichain-bridge-dapp build && pnpm -F 03-multichain-bridge-dapp preview",
"build": "pnpm -r build",
"build:examples": "pnpm -F './examples/*' build",
"build:packages": "pnpm -F './packages/*' build",
"typecheck": "pnpm -r typecheck",
"lint": "pnpm -r lint",
"lint:fix": "pnpm -r lint:fix",
"fix": "pnpm format && pnpm lint:fix",
"format": "prettier --write \"**/*.{ts,tsx,js,jsx,json,md,yaml,yml}\"",
"format:check": "prettier --check \"**/*.{ts,tsx,js,jsx,json,md,yaml,yml}\"",
"check": "pnpm typecheck && pnpm lint && pnpm format:check",
"clean": "pnpm -r clean && rm -rf node_modules .pnpm-store",
"prepare": "husky"
},
"devDependencies": {
"@eslint/js": "10.0.1",
"@types/node": "^22.15.29",
"eslint": "^10.0.0",
"eslint-config-prettier": "^10.1.8",
"globals": "^16.2.0",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"prettier": "^3.8.1",
"typescript": "^5.9.3",
"typescript-eslint": "^8.55.0"
},
"lint-staged": {
"*.{ts,tsx,js,jsx}": [
"eslint --fix",
"prettier --write"
],
"*.{json,md,yaml,yml,css}": [
"prettier --write"
]
},
"keywords": [
"chainlink",
"ccip",
"cross-chain",
"interoperability",
"sdk",
"examples",
"ethereum",
"solana",
"blockchain"
],
"pnpm": {
"overrides": {
"minimatch@<3.1.6": ">=3.1.6",
"@openzeppelin/contracts@4.7.3": "4.9.6",
"@openzeppelin/contracts-upgradeable@4.7.3": "4.9.6",
"@openzeppelin/contracts-4.7.3": "npm:@openzeppelin/contracts@4.9.6",
"undici@<6.22.0": ">=6.22.0"
}
},
"author": "Chainlink",
"license": "MIT"
}