-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.64 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
{
"name": "@spritz-finance/sdk",
"version": "0.3.16",
"description": "🛠 An SDK for building applications on top of Spritz Finance.",
"main": "dist/spritz-sdk.js",
"module": "dist/spritz-sdk.mjs",
"types": "dist/spritz-sdk.d.ts",
"files": [
"dist"
],
"repository": "https://github.com/spritz-finance/sdk.git",
"author": "Laurence Davies <[email protected]>",
"license": "MIT",
"keywords": [
"spritz",
"spritz-finance",
"ethereum"
],
"scripts": {
"prebuild": "rimraf dist",
"prepare": "rollup -c",
"build": "rollup -c",
"prepublishOnly": "npm run build",
"typechain:generate": "yarn typechain --target=ethers-v5 ./src/contracts/**/abi/*.json --out-dir=./src/contracts/types"
},
"devDependencies": {
"@rollup/plugin-json": "^6.0.0",
"@typechain/ethers-v5": "^10.1.0",
"@types/jest": "^24.0.25",
"@types/mocha": "^9.1.1",
"@types/node": "^18.0.3",
"dotenv": "^16.0.2",
"esbuild": "^0.18.9",
"eslint": "^8.19.0",
"hardhat": "^2.10.0",
"jest": "27.5.1",
"jest-junit": "^12.0.0",
"rimraf": "^3.0.2",
"rollup": "^3.25.2",
"rollup-plugin-dts": "^5.3.0",
"rollup-plugin-esbuild": "^5.0.0",
"ts-jest": "27.1.3",
"ts-node": "^10.8.2",
"tslib": "^2.4.0",
"typechain": "^8.1.0",
"typescript": "^4.7.4"
},
"dependencies": {
"@ethersproject/providers": "^5.7.2",
"@paraswap/sdk": "^6.10.0",
"@uniswap/sdk-core": "^3.1.0",
"@uniswap/smart-order-router": "^3.0.3",
"@uniswap/v2-core": "^1.0.0",
"axios": "^1.4.0",
"ethers": "^5.7.2",
"jsbi": "^3.1.1"
},
"publishConfig": {
"access": "public"
}
}