-
Notifications
You must be signed in to change notification settings - Fork 98
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.04 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.04 KB
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
{
"name": "@airswap/wrapper",
"version": "5.0.1",
"description": "AirSwap: Wrap and Unwrap Native Tokens",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/airswap/airswap-protocols"
},
"files": [
"./build",
"./typechain",
"./deploys*"
],
"main": "typechain/index.js",
"types": "typechain/index.ts",
"scripts": {
"clean": "rm -rf ./cache && rm -rf ./build && rm -rf ./typechain",
"compile": "hardhat compile; yarn typechain",
"typechain": "tsc -b",
"coverage": "hardhat coverage",
"test": "hardhat test",
"test:ci": "hardhat test",
"deploy": "hardhat run ./scripts/deploy.js",
"verify": "hardhat run ./scripts/verify.js",
"owners": "hardhat run ./scripts/owner.js"
},
"devDependencies": {
"@airswap/swap-erc20": "5.0.1",
"@airswap/utils": "5.3.0",
"@openzeppelin/contracts": "^4.8.3",
"@uniswap/v2-periphery": "^1.1.0-beta.0",
"hardhat": "^2.20.1",
"typescript": "^5.9.3"
},
"publishConfig": {
"access": "public"
}
}