-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 1.89 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 1.89 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "origin-morpho-utils",
"version": "0.1.1",
"description": "Morpho Blue / MetaMorpho vault APY computation and deposit/withdrawal impact simulation",
"license": "BUSL-1.1",
"author": "Origin Protocol",
"repository": {
"type": "git",
"url": "https://github.com/OriginProtocol/morpho-utils.git"
},
"keywords": ["morpho", "defi", "apy", "metamorpho", "viem"],
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"bin": {
"morpho-utils": "./dist/cli.js"
},
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
},
"./math": {
"import": {
"types": "./dist/math.d.ts",
"default": "./dist/math.js"
},
"require": {
"types": "./dist/math.d.cts",
"default": "./dist/math.cjs"
}
}
},
"files": [
"dist"
],
"scripts": {
"build": "tsup",
"dev": "tsx src/cli.ts",
"start": "node dist/cli.js",
"test": "vitest run",
"test:watch": "vitest",
"lint": "eslint src/ test/",
"lint:fix": "eslint src/ test/ --fix",
"prettier-check": "prettier --check 'src/**/*.ts' 'test/**/*.ts'",
"prettier-fix": "prettier --write 'src/**/*.ts' 'test/**/*.ts'",
"typecheck": "tsc --noEmit",
"prepublishOnly": "pnpm build"
},
"peerDependencies": {
"viem": ">=2.0.0"
},
"peerDependenciesMeta": {
"viem": {
"optional": true
}
},
"devDependencies": {
"@trivago/prettier-plugin-sort-imports": "^6.0.2",
"@types/node": "^25.6.0",
"eslint": "^9.39.4",
"prettier": "^3.8.2",
"tsup": "^8.0.0",
"tsx": "^4.21.0",
"typescript": "~5.8.0",
"typescript-eslint": "^8.58.1",
"viem": "^2.40.0",
"vitest": "^3.0.0"
}
}