generated from wrytlabs/template-core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 2 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
{
"name": "@wrytlabs/stablecoin-core",
"version": "0.0.2",
"private": false,
"license": "MIT",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"author": "samclassix <[email protected]>, wrytlabs <[email protected]>",
"description": "Stablecoin Core implementation",
"directories": {
"doc": "docs",
"test": "tests"
},
"scripts": {
"wallet": "npx ts-node helper/wallet.info.ts",
"compile": "npx hardhat compile",
"test": "npx hardhat test",
"coverage": "npx hardhat coverage",
"deploy": "npx hardhat ignition deploy",
"verify": "npx hardhat verify",
"build": "tsup",
"publish": "npm publish --access public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/wrytlabs/core"
},
"keywords": [],
"bugs": {
"url": "https://github.com/wrytlabs/core/issues"
},
"homepage": "https://github.com/wrytlabs/core#readme",
"devDependencies": {
"@nomicfoundation/hardhat-chai-matchers": "^2.0.2",
"@nomicfoundation/hardhat-ethers": "^3.0.8",
"@nomicfoundation/hardhat-ignition": "^0.15.6",
"@nomicfoundation/hardhat-ignition-ethers": "^0.15.6",
"@nomicfoundation/hardhat-network-helpers": "^1.0.9",
"@nomicfoundation/hardhat-toolbox": "^3.0.0",
"@nomicfoundation/hardhat-verify": "^2.0.11",
"@nomicfoundation/ignition-core": "^0.15.6",
"@typechain/hardhat": "^9.0.0",
"@types/chai": "^4.3.6",
"@types/mocha": "^10.0.1",
"chai": "^4.3.8",
"dotenv": "^16.3.1",
"ethers": "^6.13.2",
"hardhat-deploy": "^0.11.37",
"hardhat-gas-reporter": "^1.0.9",
"mocha": "^10.7.0",
"solidity-coverage": "^0.8.4",
"tsc-watch": "^6.2.0",
"viem": "^2.21.16"
},
"dependencies": {
"@openzeppelin/contracts": "^5.1.0",
"@typechain/ethers-v6": "^0.5.0",
"@uniswap/v3-core": "^1.0.1",
"@uniswap/v3-periphery": "^1.4.4",
"hardhat": "^2.22.10",
"hardhat-abi-exporter": "^2.10.1",
"hardhat-contract-sizer": "^2.5.1",
"prompt": "^1.3.0",
"ts-node": "^10.9.1",
"tsup": "^8.3.0",
"typechain": "^8.3.1",
"typescript": "^5.6.2"
}
}