-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 938 Bytes
/
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
{
"name": "@premia/v3-abi",
"description": "Contract deployment metadata, and ABIs for Premia v3 contracts. Also includes Typechain classes with ethers-v6 target.",
"main": "index.js",
"types": "index.d.ts",
"version": "1.2.9",
"license": "LGPL-3.0-or-later",
"repository": {
"type": "git",
"url": "https://github.com/Premian-Labs/v3-abi.git"
},
"scripts": {
"build": "bash scripts/update.sh",
"codegen": "typechain --target ethers-v6 --out-dir typechain abi/**/*.json",
"release": "bash scripts/release.sh"
},
"keywords": [
"premia",
"v3",
"solidity",
"abi",
"ethereum",
"defi",
"options",
"trading",
"and",
"market-making"
],
"devDependencies": {
"@typechain/ethers-v6": "^0.5.0",
"@types/node": "^20.8.0",
"ts-node": "^10.9.1",
"typechain": "^8.3.1",
"typescript": "^5.2.2"
},
"dependencies": {
"ethers": "^6.11.1"
}
}