-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
41 lines (41 loc) · 1000 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
40
41
{
"name": "@lyfebloc/lb-sdk-automatic",
"version": "3.0.0",
"repository": "[email protected]:lyfebloc/lb-sdk-automatic.git",
"author": "lyfebloc <[email protected]>",
"license": "MIT",
"main": "dist/index.js",
"description": "🛠 An SDK for building Lyfebloc Automatic",
"typings": "dist/index.d.ts",
"files": [
"dist"
],
"module": "dist/sdk.esm.js",
"scripts": {
"lint": "tsdx lint src test",
"build": "tsdx build",
"start": "tsdx watch",
"test": "tsdx test",
"prepublishOnly": "tsdx build"
},
"dependencies": {
"@ethersproject/abi": "^5.0.12",
"@ethersproject/solidity": "^5.0.9",
"@lyfebloc/lb-sdk-core": "^4.0.0",
"@uniswap/v3-periphery": "^1.3.0",
"tiny-invariant": "^1.1.0",
"tiny-warning": "^1.0.3"
},
"devDependencies": {
"@types/jest": "^24.0.25",
"tsdx": "^0.14.1"
},
"engines": {
"node": ">=10"
},
"prettier": {
"printWidth": 120,
"semi": false,
"singleQuote": true
}
}