-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.28 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
{
"name": "@instadapp/utils",
"version": "0.7.4",
"description": "",
"repository": "instadapp/utils",
"license": "MIT",
"sideEffects": false,
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.cjs",
"import": "./dist/index.mjs"
}
},
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "unbuild",
"dev": "vitest dev",
"lint": "eslint --ext .ts,.js,.mjs,.cjs .",
"prepack": "unbuild",
"release": "yarn test && standard-version && git push --follow-tags && yarn publish",
"test": "yarn lint && vitest"
},
"dependencies": {
"async-retry": "^1.3.3",
"axios": "^0.27.2"
},
"devDependencies": {
"@ethersproject/address": "^5.6.1",
"@ethersproject/contracts": "^5.6.2",
"@ethersproject/providers": "^5.6.8",
"@nuxtjs/eslint-config-typescript": "latest",
"@types/async-retry": "^1.4.4",
"@vitest/ui": "^0.17.1",
"c8": "latest",
"dotenv": "^16.0.1",
"dsa-connect": "^0.6.17",
"eslint": "8.19.0",
"node-cache": "^5.1.2",
"standard-version": "latest",
"typescript": "latest",
"unbuild": "latest",
"vitest": "^0.23.4",
"web3": "^1.7.4"
}
}