-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
41 lines (41 loc) · 1.04 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
{
"name": "@opendollar/sdk",
"version": "1.7.6",
"description": "Javascript client for Open Dollar",
"license": "MIT",
"main": "lib",
"files": [
"lib"
],
"workspaces": {
"packages": [
".",
"solidity"
]
},
"scripts": {
"prebuild": "cd ./solidity && yarn compile",
"build": "sh ./move-abis.sh && yarn generate-types && tsc",
"generate-types": "yarn typechain --target ethers-v5 --out-dir src/typechained --glob ./abis/**/*.json",
"lint:check": "prettier --check .",
"lint:fix": "sort-package-json && prettier --write .",
"test": "echo \"No tests yet\""
},
"dependencies": {
"@opendollar/abis": "0.0.0-605371bd",
"ethers": "5.4.7"
},
"devDependencies": {
"@commitlint/cli": "17.6.5",
"@commitlint/config-conventional": "17.6.5",
"@typechain/ethers-v5": "^11.0.0",
"lint-staged": "13.2.2",
"prettier": "2.8.8",
"sort-package-json": "2.4.1",
"typechain": "8.2.0",
"typescript": "5.0.4"
},
"peerDependencies": {
"utf-8-validate": "^5.0.2"
}
}