forked from Uniswap/sdks
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
87 lines (87 loc) · 2.12 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "@helix-bridge/v3-sdk",
"version": "1.1.0",
"description": "⚒️ An SDK for building applications on top of Uniswap V3",
"repository": "https://github.com/Uniswap/sdks.git",
"keywords": [
"uniswap",
"ethereum"
],
"license": "MIT",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"module": "dist/v3-sdk.esm.js",
"files": [
"dist"
],
"engines": {
"node": ">=10"
},
"scripts": {
"build": "tsdx build",
"lint": "tsdx lint src",
"release": "semantic-release",
"start": "tsdx watch",
"test": "tsdx test"
},
"dependencies": {
"@ethersproject/abi": "^5.5.0",
"@ethersproject/solidity": "^5.0.9",
"@helix-bridge/sdk-core": "1.1.0",
"@uniswap/swap-router-contracts": "^1.3.0",
"@uniswap/v3-periphery": "^1.1.1",
"@uniswap/v3-staker": "1.0.0",
"tiny-invariant": "^1.1.0",
"tiny-warning": "^1.0.3"
},
"devDependencies": {
"@types/jest": "^24.0.25",
"@uniswap/v3-core": "1.0.0",
"babel-jest": "25.5.1",
"tsdx": "^0.14.1"
},
"resolutions": {
"regenerator-runtime": "^0.14.1"
},
"resolutionsComments": {
"regenerator-runtime": "Fixes https://github.com/facebook/regenerator/pull/480. It can be removed when `tsdx` updates their dependencies."
},
"prettier": {
"printWidth": 120,
"semi": false,
"singleQuote": true
},
"publishConfig": {
"access": "public",
"@helix-bridge:registry": "https://npm.pkg.github.com"
},
"release": {
"extends": "semantic-release-monorepo",
"branches": [
{
"name": "main",
"prerelease": false
}
],
"plugins": [
[
"@semantic-release/commit-analyzer",
{
"preset": "angular",
"releaseRules": "../../publishing/release-rules.cjs"
}
],
"@semantic-release/release-notes-generator",
"@semantic-release/npm",
"@semantic-release/github",
[
"@semantic-release/exec",
{
"successCmd": "git restore yarn.lock && yarn",
"failCmd": "git restore yarn.lock && yarn",
"execCwd": "../.."
}
]
]
}
}