-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
85 lines (85 loc) · 1.95 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "@ensdomains/ccip-read-dns-gateway",
"version": "0.1.0",
"license": "MIT",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"files": [
"dist",
"src"
],
"engines": {
"node": ">=16.7.0"
},
"scripts": {
"start:worker": "wrangler dev",
"build:worker": "wrangler build",
"publish:worker": "wrangler publish",
"log:worker": "wrangler tail",
"start": "yarn build && node dist/index.js",
"build": "tsdx build",
"test": "tsdx test",
"lint": "tsdx lint",
"prepare": "tsdx build",
"size": "bundlesize"
},
"husky": {
"hooks": {
"pre-commit": "tsdx lint"
}
},
"jest": {
"setupFilesAfterEnv": [
"<rootDir>/jest.setup.ts"
],
"testTimeout": 20000
},
"prettier": {
"printWidth": 80,
"semi": true,
"singleQuote": true,
"trailingComma": "es5"
},
"author": "Nick Johnson",
"module": "dist/ccip-read-dns-gateway.esm.js",
"bundlesize": [
{
"path": "dist/ccip-read-dns-gateway.cjs.production.min.js",
"maxSize": "10 KB"
},
{
"path": "dist/ccip-read-dns-gateway.esm.js",
"maxSize": "10 KB"
}
],
"devDependencies": {
"@cloudflare/workers-types": "^4.20230214.0",
"@ensdomains/ens-contracts": "^0.0.21",
"@types/chai": "^4.3.4",
"@types/chai-as-promised": "^7.1.5",
"@types/dns-packet": "^5.2.4",
"@types/supertest": "^2.0.11",
"bundlesize2": "^0.0.31",
"chai": "^4.3.7",
"chai-as-promised": "^7.1.1",
"dns-packet": "^5.4.0",
"ganache": "^7.8.0",
"husky": "^8.0.3",
"supertest": "^6.1.6",
"tsdx": "^0.14.1",
"tslib": "^2.5.0",
"typescript": "^4.9.5",
"wrangler": "^2.0.7"
},
"dependencies": {
"@chainlink/ccip-read-server": "^0.2.1",
"@ensdomains/ccip-read-cf-worker": "^0.0.1",
"@ensdomains/dnsprovejs": "^0.4.1",
"dotenv": "^16.0.3",
"ethers": "^5.7.2",
"node-fetch": "2.6.1"
},
"volta": {
"node": "16.15.1"
}
}