-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
47 lines (47 loc) · 1.11 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
{
"name": "@lootswap/sdk-extra",
"license": "MIT",
"version": "2.1.0",
"description": "🛠 A specific SDK/toolkit for building applications on top of LootSwap.",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"files": [
"dist"
],
"repository": "https://github.com/LootSwap/lootswap-sdk-extra.git",
"keywords": [
"ethereum",
"harmony",
"lootswap"
],
"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/address": "^5.1.0",
"@ethersproject/contracts": "^5.1.1",
"@ethersproject/providers": "^5.1.2",
"@ethersproject/solidity": "^5.1.0",
"@types/lodash.random": "^3.2.6",
"@lootswap/default-token-list": "^2.2.0",
"@lootswap/sdk": "^2.0.1",
"lodash.random": "^3.2.0"
},
"devDependencies": {
"@types/jest": "^24.0.25",
"tsdx": "^0.12.3"
},
"engines": {
"node": ">=10"
},
"prettier": {
"printWidth": 120,
"semi": false,
"singleQuote": true
}
}