forked from Uniswap/sdks
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
101 lines (101 loc) · 2.72 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/uniswapx-sdk",
"version": "1.1.0",
"author": "Uniswap",
"repository": "https://github.com/Uniswap/sdks.git",
"keywords": [
"uniswap",
"ethereum"
],
"license": "MIT",
"main": "dist/src/index.js",
"typings": "dist/src/index.d.ts",
"module": "dist/uniswapx-sdk.esm.js",
"files": [
"dist"
],
"engines": {
"node": ">=10"
},
"scripts": {
"build": "yarn run typechain && tsc -p tsconfig.json",
"lint": "eslint src --ext .ts",
"lint:fix": "eslint src --ext .ts --fix",
"prettier": "prettier \"src/**/*.ts\" --list-different",
"release": "semantic-release",
"test": "run-s build test:unit test:integration",
"test:unit": "jest --testPathPattern src --detectOpenHandles --forceExit --testPathIgnorePatterns dist",
"test:integration": "yarn build && cd integration && yarn && yarn test",
"typechain": "typechain --target=ethers-v5 --out-dir src/contracts --glob ./abis/**/*.json"
},
"dependencies": {
"@ethersproject/bytes": "^5.7.0",
"@ethersproject/providers": "^5.7.0",
"@helix-bridge/sdk-core": "1.1.0",
"@uniswap/permit2-sdk": "^1.2.1",
"ethers": "^5.7.0"
},
"devDependencies": {
"@typechain/ethers-v5": "^10.1.0",
"@types/jest": "^24.0.25",
"@types/node": "^18.7.16",
"@typescript-eslint/eslint-plugin": "^5.62",
"@typescript-eslint/parser": "^5.62",
"eslint": "^7.8.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-functional": "^3.0.2",
"eslint-plugin-import": "^2.22.0",
"husky": "^8.0.3",
"jest": "25.5.0",
"jest-environment-node": "25.5.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.4.1",
"ts-jest": "25.5.0",
"ts-node": "^10.9.1",
"typechain": "^8.1.0",
"typescript": "^4.3.3"
},
"husky": {
"hooks": {
"pre-commit": "yarn fix"
}
},
"publishConfig": {
"access": "public",
"@helix-bridge:registry": "https://npm.pkg.github.com"
},
"release": {
"extends": "semantic-release-monorepo",
"branches": [
{
"name": "still-in-alpha",
"prerelease": false
},
{
"name": "beta",
"prerelease": true
}
],
"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": "../.."
}
]
]
}
}