forked from Uniswap/sdks
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 905 Bytes
/
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
{
"name": "@uniswap/permit2-sdk",
"description": "An sdk for interacting with permit2.",
"repository": "https://github.com/Uniswap/sdks.git",
"keywords": [
"uniswap",
"ethereum"
],
"license": "MIT",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsdx build",
"interop": "yarn node writeInterop.js",
"lint": "prettier --check src/",
"release": "semantic-release",
"start": "tsdx watch",
"test": "tsdx test --testPathIgnorePatterns=/permit2/"
},
"dependencies": {
"ethers": "^6.13.4",
"tiny-invariant": "^1.1.0"
},
"devDependencies": {
"@types/jest": "^24.0.25",
"prettier": "^2.4.1",
"tsdx": "^0.14.1"
},
"prettier": {
"printWidth": 120,
"semi": false,
"singleQuote": true
},
"publishConfig": {
"access": "public",
"provenance": true
}
}