-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
141 lines (141 loc) · 4.07 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
{
"name": "@gelatonetwork/web3-functions-sdk",
"version": "2.4.4",
"description": "Gelato Automate Web3 Functions sdk",
"repository": {
"type": "git",
"url": "https://github.com/gelatodigital/web3-functions-sdk.git"
},
"bugs": {
"url": "https://github.com/gelatodigital/web3-functions-sdk/issues"
},
"homepage": "https://docs.gelato.network/developer-services/web3-functions",
"author": "Gelato Network",
"license": "MIT",
"keywords": [
"web3",
"serverless",
"blockchain",
"smart-contract",
"automation",
"hardhat",
"hardhat-plugin"
],
"main": "dist/lib/index.js",
"types": "dist/lib/types/index.d.ts",
"files": [
"dist/lib/**/*",
"dist/hardhat/**/*"
],
"bin": {
"w3f": "./dist/bin/index.js"
},
"exports": {
".": "./dist/lib/index.js",
"./net": "./dist/lib/net/index.js",
"./runtime": "./dist/lib/runtime/index.js",
"./provider": "./dist/lib/provider/index.js",
"./builder": "./dist/lib/builder/index.js",
"./uploader": "./dist/lib/uploader/index.js",
"./loader": "./dist/lib/loader/index.js",
"./binaries": "./dist/lib/binaries/index.js",
"./hardhat-plugin": "./dist/hardhat/index.js",
"./types": "./dist/lib/types/index.js"
},
"typesVersions": {
"*": {
"*": [
"dist/lib/index.d.ts"
],
"net": [
"dist/lib/net/index.d.ts"
],
"provider": [
"dist/lib/provider/index.d.ts"
],
"runtime": [
"dist/lib/runtime/index.d.ts"
],
"builder": [
"dist/lib/builder/index.d.ts"
],
"uploader": [
"dist/lib/uploader/index.d.ts"
],
"loader": [
"dist/lib/loader/index.d.ts"
],
"binaries": [
"dist/lib/binaries/index.d.ts"
],
"hardhat-plugin": [
"dist/hardhat/index.d.ts"
]
}
},
"scripts": {
"prebuild": "node -p \"'export const SDK_VERSION = ' + JSON.stringify(require('./package.json').version) + ';'\" > src/lib/version.ts",
"build": "rm -rf dist && tsc --project tsconfig.build.json && yarn deps",
"deps": "yarn link && yarn link @gelatonetwork/web3-functions-sdk",
"format": "prettier --write '*/**/*.{js,json,md,ts}'",
"format:check": "prettier --check '*/**/*.{js,json,md,ts}'",
"lint": "eslint --cache .",
"test": "ts-node src/bin/index.ts test",
"test:unit": "node --experimental-vm-modules ./node_modules/.bin/jest src --verbose --detectOpenHandles --forceExit --silent=true",
"benchmark": "ts-node src/bin/index.ts benchmark",
"deploy": "ts-node src/bin/index.ts deploy",
"fetch": "ts-node src/bin/index.ts fetch",
"schema": "ts-node src/bin/index.ts schema"
},
"engines": {
"node": ">=18.0.0"
},
"devDependencies": {
"@changesets/cli": "^2.26.2",
"@ethersproject/abi": "^5.7.0",
"@jest/globals": "^29.7.0",
"@tsconfig/recommended": "^1.0.1",
"@types/jest": "^29.5.5",
"@types/node": "^18",
"@types/object-hash": "^3.0.2",
"@types/signal-exit": "^3.0.1",
"@typescript-eslint/eslint-plugin": "^5.40.0",
"@typescript-eslint/parser": "^5.6.0",
"axios-mock-adapter": "^1.21.5",
"eslint": "^8.4.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"hardhat": "^2.13.0",
"husky": "^8.0.3",
"jest": "^29.5.0",
"prettier": "^2.3.2",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.1",
"typescript": "^4.7.0"
},
"dependencies": {
"@ethersproject/address": "^5.7.0",
"@ethersproject/contracts": "^5.7.0",
"@ethersproject/providers": "^5.7.2",
"@ethersproject/units": "^5.7.0",
"@types/dockerode": "^3.3.11",
"ajv": "^8.11.0",
"axios": "^1.6.8",
"body-parser": "^1.20.1",
"colors": "^1.4.0",
"deep-object-diff": "^1.1.9",
"deno-bin": "^1.44.4",
"dockerode": "^3.3.4",
"dotenv": "^16.0.3",
"esbuild": "^0.17.4",
"eth-rpc-errors": "^4.0.3",
"express": "^4.18.2",
"form-data": "^4.0.0",
"ky": "^0.32.2",
"pidusage": "^3.0.1",
"semver": "^7.5.0",
"signal-exit": "^3.0.7",
"tar": "^6.1.12",
"undici": "^6.6.2"
}
}