-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
76 lines (76 loc) · 1.89 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
{
"name": "@enzoferey/multicall-nitro",
"version": "0.1.1",
"license": "MIT",
"homepage": "https://github.com/enzoferey/multicall-nitro",
"repository": {
"type": "git",
"url": "https://github.com/enzoferey/multicall-nitro.git"
},
"keywords": [
"multicall",
"batching",
"blockchain",
"react"
],
"type": "module",
"files": [
"dist"
],
"main": "./dist/multicall-nitro.umd.cjs",
"module": "./dist/multicall-nitro.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/multicall-nitro.js",
"require": "./dist/multicall-nitro.umd.cjs"
},
"./react": {
"import": "./dist/multicall-nitro-react.js",
"require": "./dist/multicall-nitro-react.umd.cjs"
}
},
"typesVersions": {
"*": {
".": [
"./dist/index.d.ts"
],
"react": [
"./dist/react/index.d.ts"
]
}
},
"scripts": {
"build": "tsc && vite build && vite build --config vite.react.config.js --emptyOutDir false",
"prepublishOnly": "yarn build",
"ts:check": "tsc --noEmit",
"format": "prettier --write .",
"format:check": "prettier --check .",
"lint": "eslint lib --max-warnings 0",
"test": "vitest",
"test:ci": "vitest --coverage --run"
},
"peerDependencies": {
"@makerdao/multicall": ">=0.12.0",
"react": ">=18.0.0"
},
"devDependencies": {
"@makerdao/multicall": "^0.12.0",
"@testing-library/react": "^13.3.0",
"@types/react": "^18.0.15",
"@typescript-eslint/eslint-plugin": "^5.30.7",
"@typescript-eslint/parser": "^5.30.7",
"bignumber.js": "^9.0.2",
"c8": "^7.12.0",
"eslint": "^8.20.0",
"eslint-config-prettier": "^8.5.0",
"jsdom": "^20.0.0",
"prettier": "2.7.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"typescript": "^4.7.4",
"vite": "^3.0.2",
"vite-plugin-dts": "^1.4.0",
"vitest": "^0.19.0"
}
}