forked from Uniswap/v2-core
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.4 KB
/
Copy pathpackage.json
File metadata and controls
55 lines (55 loc) · 1.4 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
{
"name": "@krain/kdex-v2-core",
"description": "🎛 Core contracts for KDEX protocol with Infinite Liquidity Pool",
"version": "2.0.0",
"homepage": "https://github.com/krain/kdex",
"repository": {
"type": "git",
"url": "https://github.com/krain/kdex"
},
"keywords": [
"kdex",
"uniswap",
"base",
"ethereum",
"v2",
"core",
"defi",
"amm",
"ilp",
"impermanent-loss-protection"
],
"files": [
"contracts",
"artifacts",
"typechain-types"
],
"engines": {
"node": ">=16.0.0",
"npm": ">=8.0.0"
},
"devDependencies": {
"@nomicfoundation/hardhat-toolbox": "^5.0.0",
"@nomicfoundation/hardhat-verify": "^2.0.14",
"dotenv": "^17.0.1",
"hardhat": "^2.22.6",
"prettier": "^1.19.1",
"solc": "0.5.16",
"typescript": "^5.0.0"
},
"scripts": {
"lint": "prettier ./test/*.ts --check",
"lint:fix": "prettier ./test/*.ts --write",
"clean": "hardhat clean",
"compile": "hardhat compile",
"test": "hardhat test",
"test:gas": "REPORT_GAS=true hardhat test",
"typechain": "hardhat typechain",
"deploy:sepolia": "hardhat deploy-kdex --network baseSepolia --verify --save",
"deploy:mainnet": "hardhat deploy-kdex --network baseMainnet --verify --save",
"verify": "hardhat verify",
"coverage": "hardhat coverage",
"prepublishOnly": "npm run test"
},
"license": "GPL-3.0-or-later"
}