-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
74 lines (74 loc) · 2.64 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
71
72
73
74
{
"name": "@sftchance/remus",
"version": "0.0.4",
"main": "dist/lib/hooks.js",
"types": "dist/types/index.d.ts",
"dependencies": {
"@changesets/cli": "^2.26.1",
"@ethersproject/abi": "^5.7.0",
"@ethersproject/providers": "^5.7.2",
"ethers": "^5.7.2",
"wagmi": "^1.0.1"
},
"devDependencies": {
"@nomicfoundation/hardhat-chai-matchers": "^1.0.0",
"@nomicfoundation/hardhat-network-helpers": "^1.0.8",
"@nomicfoundation/hardhat-toolbox": "^2.0.0",
"@nomiclabs/hardhat-ethers": "^2.2.3",
"@nomiclabs/hardhat-etherscan": "^3.0.0",
"@nomiclabs/hardhat-solhint": "^3.0.1",
"@trivago/prettier-plugin-sort-imports": "^4.1.1",
"@typechain/ethers-v5": ">=10.2.1 <11.0.0",
"@typechain/hardhat": "^6.1.2",
"@types/chai": "^4.2.0",
"@types/mocha": "^9.1.0",
"@types/node": ">=12.0.0",
"@typescript-eslint/eslint-plugin": "^5.59.5",
"@typescript-eslint/parser": "^5.59.5",
"@wagmi/cli": "^1.0.1",
"abitype": "^0.8.3",
"chai": "^4.3.7",
"ci-info": "^3.8.0",
"eslint": "^8.40.0",
"eslint-config-prettier": "^8.8.0",
"hardhat": "^2.12.1-ir.0",
"hardhat-gas-reporter": "^1.0.9",
"hardhat-packager": "^1.4.2",
"hardhat-spdx-license-identifier": "^2.1.0",
"hardhat-tracer": "^2.2.2",
"lodash": "^4.17.21",
"mocha": "^10.2.0",
"prettier": "^2.8.8",
"react": ">=17.0.0 <18.0.0 || >=18.0.0 <19.0.0",
"shx": "^0.3.4",
"solidity-coverage": "^0.8.1",
"ts-node": ">=8.0.0",
"typechain": "^8.1.0",
"typescript": "^5.0.4",
"viem": "^0.3.20"
},
"scripts": {
"build": "npx wagmi generate && tsc --project ./tsconfig.json && npx hardhat prepare-package",
"clean": "shx rm -rf ./artifacts ./cache ./coverage ./coverage.json ./dist ./tsconfig.tsbuildinfo",
"clean:node_modules": "shx rm -rf ./node_modules",
"dev": "pnpm clean && pnpm hardhat coverage && REPORT_GAS=true pnpm hardhat test --fulltrace",
"test": "pnpm clean && pnpm hardhat test",
"ci": "pnpm test && pnpm build",
"release": "pnpm wagmi generate && pnpm hardhat prepare-package && changeset publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sftchance/remus.git"
},
"files": [
"/src",
"/dist",
"CHANGELOG.md"
],
"author": "sftchance",
"license": "AGPL-3.0-or-later",
"bugs": {
"url": "https://github.com/sftchance/remus/issues"
},
"private": false
}