@juiceswapxyz/router-sdk 0.0.1-beta.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json ADDED
@@ -0,0 +1,73 @@
1
+ {
2
+ "name": "@juiceswapxyz/router-sdk",
3
+ "description": "An sdk for routing swaps using JuiceSwap v2 and JuiceSwap v3.",
4
+ "version": "0.0.1-beta.0",
5
+ "repository": "https://github.com/JuiceSwapxyz/sdk.git",
6
+ "keywords": [
7
+ "juiceswap",
8
+ "ethereum"
9
+ ],
10
+ "license": "MIT",
11
+ "main": "dist/index.js",
12
+ "typings": "dist/index.d.ts",
13
+ "files": [
14
+ "dist"
15
+ ],
16
+ "scripts": {
17
+ "build": "tsdx build",
18
+ "lint": "tsdx lint src",
19
+ "release": "semantic-release",
20
+ "start": "tsdx watch",
21
+ "test": "tsdx test"
22
+ },
23
+ "dependencies": {
24
+ "@ethersproject/abi": "^5.5.0",
25
+ "@juiceswapxyz/sdk-core": "0.0.1-beta.0",
26
+ "@juiceswapxyz/v2-sdk": "0.0.1-beta.0",
27
+ "@juiceswapxyz/v3-sdk": "0.0.1-beta.0",
28
+ "@juiceswapxyz/v4-sdk": "0.0.1-beta.0",
29
+ "@uniswap/swap-router-contracts": "^1.3.0"
30
+ },
31
+ "devDependencies": {
32
+ "@types/jest": "^24.0.25",
33
+ "prettier": "^2.4.1",
34
+ "tsdx": "^0.14.1"
35
+ },
36
+ "prettier": {
37
+ "printWidth": 120,
38
+ "semi": false,
39
+ "singleQuote": true
40
+ },
41
+ "publishConfig": {
42
+ "access": "public"
43
+ },
44
+ "release": {
45
+ "extends": "semantic-release-monorepo",
46
+ "branches": [
47
+ {
48
+ "name": "main",
49
+ "prerelease": false
50
+ }
51
+ ],
52
+ "plugins": [
53
+ [
54
+ "@semantic-release/commit-analyzer",
55
+ {
56
+ "preset": "angular",
57
+ "releaseRules": "../../publishing/release-rules.cjs"
58
+ }
59
+ ],
60
+ "@semantic-release/release-notes-generator",
61
+ "@semantic-release/npm",
62
+ "@semantic-release/github",
63
+ [
64
+ "@semantic-release/exec",
65
+ {
66
+ "successCmd": "git restore yarn.lock && yarn",
67
+ "failCmd": "git restore yarn.lock && yarn",
68
+ "execCwd": "../.."
69
+ }
70
+ ]
71
+ ]
72
+ }
73
+ }