-
Notifications
You must be signed in to change notification settings - Fork 31
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.81 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.81 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
56
{
"name": "@morpho-org/test-wagmi",
"description": "Wagmi-based extension of `@morpho-org/test` that injects a test Wagmi config as a test fixture alongside viem's anvil client.",
"version": "2.0.0",
"author": "Morpho Association <contact@morpho.org>",
"contributors": ["Rubilmax <rmilon@gmail.com>"],
"repository": "github:morpho-org/sdks",
"homepage": "https://github.com/morpho-org/sdks",
"bugs": {
"url": "https://github.com/morpho-org/sdks/issues",
"email": "contact@morpho.org"
},
"type": "module",
"main": "src/index.ts",
"files": ["lib"],
"license": "MIT",
"scripts": {
"prepublish": "$npm_execpath build",
"build": "$npm_execpath build:cjs && $npm_execpath build:esm",
"build:cjs": "tsc --build tsconfig.build.cjs.json && echo '{\"type\":\"commonjs\"}' > lib/cjs/package.json",
"build:esm": "tsc --build tsconfig.build.esm.json && echo '{\"type\":\"module\"}' > lib/esm/package.json"
},
"peerDependencies": {
"@morpho-org/test": "workspace:^",
"@tanstack/react-query": "^5.59.0",
"@testing-library/dom": "^10.4.0",
"@testing-library/react": "^16.0.0",
"viem": "^2.21.10",
"vitest": ">=2.0.0 <5.0.0",
"wagmi": ">=2.12.10 <4.0.0"
},
"devDependencies": {
"@morpho-org/test": "workspace:^",
"@tanstack/react-query": "^5.62.11",
"@testing-library/dom": "^10.4.0",
"@testing-library/react": "^16.1.0",
"@types/react": "^19.0.7",
"@types/react-dom": "^19.0.2",
"@wagmi/core": "^3.0.0",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"typescript": "^5.9.3",
"viem": "^2.41.2",
"vitest": "^4.0.15",
"wagmi": "^3.1.0"
},
"publishConfig": {
"exports": {
".": {
"types": "./lib/esm/index.d.ts",
"import": "./lib/esm/index.js",
"require": "./lib/cjs/index.js"
}
}
}
}