forked from SebastianLF/sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
76 lines (76 loc) · 2.23 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": "@azuro-protocol/sdk",
"version": "0.4.0",
"engines": {
"node": ">=14.17.4",
"npm": ">=6.14.14"
},
"azuro": {
"contractsVersion": "release-1.8"
},
"author": {
"name": "Pavel Ivanov",
"email": "[email protected]"
},
"description": "Azuro SDK",
"homepage": "https://github.com/Azuro-protocol/sdk#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/Azuro-protocol/sdk.git"
},
"keywords": [
"betting",
"protocol",
"sdk"
],
"files": [
"lib",
"dist"
],
"license": "MIT",
"module": "dist/index.es.js",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"test": "echo \"Error: no test specified\"",
"update-abi": "node bin/updateAbi.js && npm run typechain",
"typechain": "typechain --target ethers-v5 --out-dir ./src/contracts/types './src/contracts/abis/*.json'",
"eslint": "eslint --color --cache --ext ts --ext tsx ./src",
"eslint-fix": "npm run eslint -- --fix",
"dev": "rollup -cw",
"build": "rimraf ./dist && rimraf ./lib && npm run typechain && rollup -c --compact",
"prepublish": "npm run build && npm run test"
},
"devDependencies": {
"@babel/core": "^7.17.0",
"@babel/plugin-proposal-object-rest-spread": "^7.16.7",
"@babel/plugin-transform-destructuring": "^7.16.7",
"@babel/plugin-transform-runtime": "^7.17.0",
"@babel/preset-env": "^7.16.11",
"@babel/preset-react": "^7.16.7",
"@babel/preset-typescript": "^7.16.7",
"@rollup/plugin-json": "^4.1.0",
"@typechain/ethers-v5": "^9.0.0",
"@types/node": "^17.0.14",
"@typescript-eslint/eslint-plugin": "^5.29.0",
"@typescript-eslint/parser": "^5.29.0",
"builtin-modules": "^3.2.0",
"eslint": "^8.18.0",
"eslint-plugin-es5": "^1.5.0",
"eslint-plugin-import": "^2.26.0",
"rimraf": "^3.0.2",
"rollup": "^2.67.0",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-typescript2": "^0.31.2",
"rollup-plugin-uglify": "^6.0.4",
"typechain": "^7.0.0",
"typescript": "^3.9.10"
},
"peerDependencies": {
"@ethersproject/contracts": "^5.5.0",
"@ethersproject/providers": "^5.5.3",
"@ethersproject/units": "^5.5.0",
"axios": "^0.25.0",
"ethers": "^5.5.4"
}
}