-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
62 lines (62 loc) · 1.97 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
{
"name": "@debridge-finance/desdk",
"version": "1.0.2",
"description": "Send, track and claim arbitrary cross-chain messages over the deBridge protocol programmatically",
"repository": "github:debridge-finance/desdk",
"author": "deBridge",
"license": "LGPL-3.0-only",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"module": "lib.esm/index.js",
"keywords": [
"bridge",
"deBridge",
"ethereum"
],
"homepage": "https://debridge.finance",
"scripts": {
"lint:fix": "prettier --write 'src/**/*.{js,ts}' 'test/**/*.{js,ts}' && tslint --fix --config tslint.json --project tsconfig.json",
"lint": "tslint --config tslint.json --project tsconfig.json",
"test": "mocha --exit --recursive 'test/**/*.test.ts'",
"clean": "rm -rf build",
"build-cjs": "tsc --build tsconfig.json",
"build-esm": "tsc --build tsconfig-esm.json",
"build": "npm-run-all clean build-*",
"prepublishOnly": "npm run build",
"prepare": "npm run build"
},
"files": [
"lib/**",
"lib.esm/**",
"LICENSE",
"README.md"
],
"devDependencies": {
"@debridge-finance/contracts": "github:debridge-finance/debridge-contracts-v1#8c6f3845288d8e0596fb2700beb2ee2725d802fb",
"@nomiclabs/hardhat-ethers": "^2.0.6",
"@nomiclabs/hardhat-waffle": "^2.0.3",
"@openzeppelin/hardhat-upgrades": "^1.19.1",
"@typechain/ethers-v5": "^10.1.0",
"@typechain/hardhat": "^6.1.2",
"@types/chai": "^4.3.1",
"@types/mocha": "^9.1.1",
"@types/node": "^18.6.2",
"chai": "^4.3.6",
"ethereum-waffle": "^3.4.4",
"hardhat": "^2.10.1",
"npm-run-all": "^4.1.5",
"prettier": "2.7.1",
"ts-node": "^10.9.1",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"tslint-plugin-prettier": "^2.3.0",
"typescript": ">=4.3.0"
},
"dependencies": {
"@ethersproject/abi": "^5.0.0",
"@ethersproject/bytes": "^5.0.0",
"@ethersproject/providers": "^5.0.0",
"ethers": "^5.1.3"
},
"peerDependencies": {}
}