-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
38 lines (38 loc) · 1.12 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
{
"name": "@morpho-org/morpho-test",
"description": "Framework-agnostic extension of `@morpho-org/blue-sdk` that exports test fixtures useful for E2E tests on forks.",
"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"
},
"main": "src/index.ts",
"files": ["lib"],
"license": "MIT",
"scripts": {
"prepublish": "$npm_execpath build",
"build": "tsc"
},
"peerDependencies": {
"@morpho-org/blue-sdk": "workspace:^",
"@morpho-org/morpho-ts": "workspace:^",
"@morpho-org/test": "workspace:^",
"viem": "^2.21.10"
},
"devDependencies": {
"@morpho-org/blue-sdk": "workspace:^",
"@morpho-org/morpho-ts": "workspace:^",
"@morpho-org/test": "workspace:^",
"@types/node": "^22.13.1",
"typescript": "^5.7.2",
"viem": "^2.23.0"
},
"publishConfig": {
"main": "lib/index.js",
"types": "lib/index.d.ts"
}
}