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