-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
77 lines (77 loc) · 1.9 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
77
{
"name": "@opiumteam/opium-sdk-v2",
"version": "1.1.3",
"description": "one-stop-shop SDK to interact with the Opium-v2 protocol contracts, subgraphs and APIs",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"files": [
"dist"
],
"keywords": [
"blockchain",
"ethereum",
"DeFi",
"derivatives",
"options",
"opium-v2",
"subgraph",
"graphQL",
"typescript",
"sdk"
],
"contributors": [
{
"name": "Riccardo Biosas",
"email": "rbios@protonmail.com"
},
{
"name": "Ali Nuraldin",
"email": "ali@opium.team"
}
],
"repository": {
"type": "git",
"url": "git+https://github.com/OpiumProtocol/opium-v2-sdk.git"
},
"license": "ISC",
"author": "Opium Team <hi@opium.team>",
"scripts": {
"build": "tsc",
"generate:types": "typechain --target=ethers-v5 'src/abi/**/*.json' --out-dir 'src/types/typechain'",
"generate:docs": "typedoc src/index.ts",
"lint": "prettier --config ./.prettierrc --check .",
"format": "prettier --config ./.prettierrc --write ."
},
"husky": {
"hooks": {
"pre-commit": "yarn format && yarn generate:docs && git add -A ."
}
},
"dependencies": {
"axios": "^0.25.0",
"ethers": "^5.5.2",
"lodash": "^4.17.21"
},
"devDependencies": {
"eslint-config-prettier": "^8.3.0",
"@typechain/ethers-v5": "^9.0.0",
"@types/chai": "^4.3.0",
"@types/lodash": "^4.14.178",
"@typescript-eslint/eslint-plugin": "^5.10.2",
"@typescript-eslint/parser": "^5.10.2",
"chai": "^4.3.4",
"chai-ethers": "^0.0.1",
"eslint": "^8.8.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.25.4",
"husky": "4",
"i": "^0.3.7",
"npm": "^8.4.1",
"prettier": "^2.5.1",
"ts-generator": "^0.1.1",
"ts-node": "^10.4.0",
"typechain": "^7.0.0",
"typedoc": "^0.22.11",
"typescript": "^4.5.4"
}
}