-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
54 lines (54 loc) · 1.3 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
{
"name": "@rulesorg/serum",
"version": "0.1.3",
"description": "React + Redux library to fetch starknet state at each new block through batched and cached calls",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"files": [
"dist"
],
"repository": "https://github.com/ruleslabs/serum",
"keywords": [
"uniswap",
"ethereum"
],
"module": "dist/redux-multicall.esm.js",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "tsc && tsc-alias",
"test": "tsdx test --runInBand --env=./test/custom-test-env.js",
"prepublishOnly": "yarn build"
},
"engines": {
"node": ">=12"
},
"devDependencies": {
"@reduxjs/toolkit": "^1.8.1",
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "12.1.2",
"@types/bn.js": "^5.1.0",
"@types/elliptic": "^6.4.14",
"@types/react": "^18.0.8",
"@types/react-redux": "^7.1.24",
"jsbi": "^4.3.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-redux": "^7.2.6",
"starknet": "5.3.0",
"tsc": "^2.0.4",
"tsc-alias": "^1.6.7",
"tsdx": "^0.14.1",
"tslib": "^2.4.0",
"typescript": "^4.6.4"
},
"peerDependencies": {
"@reduxjs/toolkit": "1",
"react": "17",
"starknet": "5",
"tslib": "2"
},
"dependencies": {}
}