-
Notifications
You must be signed in to change notification settings - Fork 55
/
package.json
63 lines (63 loc) · 1.63 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
63
{
"name": "spookyswap-sdk",
"license": "MIT",
"version": "1.2.0",
"description": "🛠 An SDK for building applications on top of spookyswap.",
"main": "dist/index.js",
"module": "dist/sdk.esm.js",
"typings": "dist/index.d.ts",
"private": true,
"files": [
"dist"
],
"repository": "https://github.com/SpookySwap/SpookySwap-sdk.git",
"keywords": [
"spookyswap",
"ethereum",
"fantom"
],
"scripts": {
"lint": "tsdx lint src test",
"lint:fix": "tsdx lint src test --fix",
"build": "tsdx build",
"start": "tsdx watch",
"test": "tsdx test",
"prepublishOnly": "tsdx build",
"prepare": "rm -rf ./dist && yarn build"
},
"dependencies": {
"@uniswap/v2-core": "1.0.0",
"big.js": "^5.2.2",
"decimal.js-light": "^2.5.0",
"jsbi": "^3.1.1",
"tiny-invariant": "^1.1.0",
"tiny-warning": "^1.0.3",
"toformat": "^2.0.0"
},
"peerDependencies": {
"@ethersproject/address": "^5.0.0-beta",
"@ethersproject/contracts": "^5.0.0-beta",
"@ethersproject/networks": "^5.0.0-beta",
"@ethersproject/providers": "^5.0.0-beta",
"@ethersproject/solidity": "^5.0.0-beta"
},
"devDependencies": {
"@ethersproject/address": "^5.0.2",
"@ethersproject/contracts": "^5.0.2",
"@ethersproject/networks": "^5.0.2",
"@ethersproject/providers": "^5.0.5",
"@ethersproject/solidity": "^5.0.2",
"@types/big.js": "^4.0.5",
"@types/jest": "^24.0.25",
"babel-plugin-transform-jsbi-to-bigint": "^1.3.1",
"tsdx": "^0.12.3"
},
"engines": {
"node": ">=10"
},
"prettier": {
"printWidth": 120,
"semi": false,
"singleQuote": true
}
}