-
Notifications
You must be signed in to change notification settings - Fork 31
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.48 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.48 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
{
"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",
"type": "module",
"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/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:^",
"typescript": "^5.9.3",
"viem": "^2.41.2"
},
"publishConfig": {
"exports": {
".": {
"types": "./lib/esm/index.d.ts",
"import": "./lib/esm/index.js",
"require": "./lib/cjs/index.js"
}
}
}
}