forked from ensdomains/evmgateway
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
69 lines (69 loc) · 2.02 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
{
"name": "@unruggable/gateways",
"version": "1.0.0",
"description": "Trustless Ethereum Multichain CCIP-Read Gateway",
"publishConfig": {
"access": "public"
},
"keywords": [
"ethereum",
"evm",
"gateway",
"rollup",
"multichain",
"ccip",
"proof",
"prover",
"verifier",
"unruggable"
],
"type": "module",
"scripts": {
"check": "bunx tsc -p . --noEmit",
"forge": "forge build --force",
"serve": "bun scripts/serve.ts",
"test": "IS_CI=1 bun test --timeout 25000",
"test-all": "bun test --timeout 25000",
"test-contracts": "forge test -C test/",
"test-components": "bun scripts/opcodes.ts quiet && bun run test-contracts && bun test test/components/*",
"test-gateways": "bun test test/gateway/* --timeout 25000",
"test-fast": "bun run check && bun run lint && bun run forge && bun run test-components && bun test test/gateway/op.test.ts && bun test test/gateway/reverse-op.test.ts",
"lint": "eslint . --ext .ts",
"build": "bun scripts/build-dist.ts",
"loc": "rg -c '^' -g 'src/**/*.ts' -g 'test/**/*.ts' --no-filename | jq -s 'add'"
},
"sideEffects": false,
"exports": {
"types": "./dist/types/index.d.ts",
"require": "./dist/cjs/index.cjs",
"import": "./dist/esm/index.mjs"
},
"files": [
"dist/",
"artifacts/",
"contracts/GatewayFetcher.sol",
"contracts/GatewayFetchTarget.sol",
"contracts/GatewayRequest.sol",
"contracts/IGatewayProtocol.sol",
"contracts/IGatewayVerifier.sol",
"contracts/IVerifierHooks.sol",
"contracts/ReadBytesAt.sol"
],
"devDependencies": {
"@adraffy/blocksmith": "^0.1.51",
"@types/bun": "latest",
"@typescript-eslint/eslint-plugin": "^6.7.4",
"@typescript-eslint/parser": "^6.7.4",
"eslint": "^8.50.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.0",
"prettier": "^3.3.3"
},
"dependencies": {
"@resolverworks/ezccip": "^0.0.22",
"ethers": "^6.13.4"
},
"peerDependencies": {
"typescript": "^5.5.2"
}
}