forked from gelatodigital/automate-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.61 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
{
"name": "@gelatonetwork/automate-sdk",
"version": "3.0.2",
"description": "SDK to create Automate tasks",
"url": "https://github.com/gelatodigital/automate-sdk",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/**/*"
],
"scripts": {
"clean": "rm -rf ./dist/*",
"build": "yarn clean && yarn generate-contracts-typings && tsc --project tsconfig.prod.json && yarn copy-contracts-types",
"copy-contracts-types": "cp ./src/contracts/types/*.ts ./dist/contracts/types",
"format": "prettier --write '*/**/*.{js,json,md,ts}'",
"format:check": "prettier --check '*/**/*.{js,json,md,ts}'",
"generate-contracts-typings": "npx typechain --target=ethers-v5 --out-dir src/contracts/types ./src/**/abis/*.json && yarn format",
"lint": "eslint --cache .",
"prepare": "yarn build && yarn format && yarn lint",
"test": "ts-node ./src/index.test.ts"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@changesets/cli": "^2.26.2",
"@tsconfig/recommended": "^1.0.2",
"@typechain/ethers-v5": "^11.1.1",
"@types/node": "^20.4.8",
"@typescript-eslint/eslint-plugin": "^6.2.1",
"@typescript-eslint/parser": "^6.2.1",
"dotenv": "^16.3.1",
"eslint": "^8.46.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.0",
"lint-staged": "^13.2.3",
"prettier": "^3.0.1",
"ts-generator": "^0.1.1",
"ts-node": "^10.9.1",
"typechain": "^8.3.1",
"typescript": "^5.1.6"
},
"dependencies": {
"axios": "^1.4.0",
"buffer": "^6.0.3",
"ethers": "^5.5.2",
"siwe": "^1.1.6"
}
}