-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.49 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.49 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
{
"private": true,
"description": "A protocol for contract-initiated offchain data retrieval",
"engines": {
"node": ">=14"
},
"workspaces": {
"packages": [
"packages/server",
"packages/worker",
"packages/ethers-ccip-read-provider",
"packages/examples/trusted-gateway-token/client",
"packages/examples/trusted-gateway-token/contracts",
"packages/examples/trusted-gateway-token/server"
],
"nohoist": [
"**/@nomiclabs/**",
"**/typescript",
"**/ts-node",
"**/@typechain/**",
"hardhat"
]
},
"scripts": {
"env": "env",
"prepare": "husky install",
"test": "yarn workspaces run test",
"lint": "yarn workspaces run lint",
"build": "yarn workspaces run build",
"docs": "typedoc --entryPointStrategy packages packages/server packages/ethers-ccip-read-provider",
"clean": "rm -fr node_modules && yarn workspaces run clean"
},
"repository": {
"type": "git",
"url": "git+https://github.com/smartcontractkit/ccip-read.js.git"
},
"author": "@smartcontractkit",
"license": "MIT",
"bugs": {
"url": "https://github.com/smartcontractkit/ccip-read/issues"
},
"peerDependencies": {},
"homepage": "https://github.com/smartcontractkit/ccip-read#readme",
"devDependencies": {
"husky": "^6.0.0",
"typedoc": "^0.22.10",
"typescript": "^4.9.4"
},
"dependencies": {},
"resolutions": {
"@types/express-serve-static-core": "4.17.20",
"@types/express": "4.17.2"
}
}