forked from Uniswap/sdks
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
101 lines (101 loc) · 2.69 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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "@helix-bridge/universal-router-sdk",
"version": "1.1.0",
"description": "sdk for integrating with the Universal Router contracts",
"repository": "https://github.com/Uniswap/sdks.git",
"keywords": [
"uniswap",
"ethereum"
],
"license": "MIT",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"files": [
"dist"
],
"engines": {
"node": ">=14"
},
"scripts": {
"build": "tsdx build",
"docs": "typedoc",
"forge:fix": "forge fmt",
"install:ur": "cd node_modules/@uniswap/universal-router && forge install",
"lint": "yarn prettier",
"lint:fix": "yarn prettier:fix && yarn forge:fix",
"prettier": "prettier --check '**/*.ts' && prettier --check '**/*.json'",
"prettier:fix": "prettier --write '**/*.ts' && prettier --write '**/*.json'",
"release": "semantic-release",
"test": "yarn test:hardhat && yarn test:forge",
"test:forge": "yarn install:ur && forge test",
"test:hardhat": "env TS_NODE_COMPILER_OPTIONS='{\"module\": \"commonjs\" }' hardhat test"
},
"dependencies": {
"@helix-bridge/router-sdk": "1.1.0",
"@helix-bridge/sdk-core": "1.1.0",
"@helix-bridge/v2-sdk": "1.1.0",
"@helix-bridge/v3-sdk": "1.1.0",
"@uniswap/permit2-sdk": "^1.2.1",
"@uniswap/universal-router": "1.6.0",
"bignumber.js": "^9.0.2",
"ethers": "^5.7.0"
},
"devDependencies": {
"@types/chai": "^4.3.3",
"@types/mocha": "^9.1.1",
"@types/node": "^18.7.16",
"@types/node-fetch": "^2.6.2",
"chai": "^4.3.6",
"dotenv": "^16.0.3",
"eslint-plugin-prettier": "^3.4.1",
"hardhat": "^2.14.0",
"prettier": "^2.4.1",
"ts-node": "^10.9.1",
"tsdx": "^0.14.1",
"tslib": "^2.3.0",
"typedoc": "^0.21.2",
"typescript": "^4.3.3"
},
"prettier": {
"printWidth": 120,
"semi": false,
"singleQuote": true,
"trailingComma": "es5"
},
"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": "../.."
}
]
]
},
"installConfig": {
"hoistingLimits": "workspaces"
}
}