-
Notifications
You must be signed in to change notification settings - Fork 32
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.58 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 2.58 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
78
79
{
"name": "@morpho-org/sdks",
"version": "0.0.0",
"description": "Collection of SDKs to ease interactions with the Morpho protocol and Morpho Vaults",
"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"
},
"license": "MIT",
"type": "module",
"private": true,
"packageManager": "pnpm@10.27.0+sha512.72d699da16b1179c14ba9e64dc71c9a40988cbdc65c264cb0e489db7de917f20dcf4d64d8723625f2969ba52d4b7e2a1170682d9ac2a5dcaeaab732b7e16f04a",
"engines": {
"node": ">=22"
},
"scripts": {
"prepare": "husky",
"lint": "biome check && $npm_execpath lint:address",
"lint:address": "node --no-warnings=ExperimentalWarning scripts/lint/checksum-address.js",
"test": "dotenv -- vitest",
"test:coverage": "$npm_execpath test --coverage",
"coverage:report": "genhtml --hierarchical --sort --prefix \"$(pwd)\" -o coverage/lcov coverage/lcov.info"
},
"devDependencies": {
"@actions/core": "^1.11.1",
"@biomejs/biome": "^1.9.4",
"@commitlint/cli": "^20.2.0",
"@commitlint/config-conventional": "^20.2.0",
"@conventional-changelog/git-client": "^2.0.0",
"@types/node": "^24.10.2",
"@vitest/coverage-v8": "^4.1.4",
"@vitest/ui": "^4.1.4",
"conventional-changelog-conventionalcommits": "^8.0.0",
"conventional-changelog-writer": "^8.0.1",
"conventional-recommended-bump": "^11.0.0",
"dotenv-cli": "^8.0.0",
"happy-dom": "^20.8.9",
"husky": "^9.1.7",
"lint-staged": "^15.4.3",
"semver": "^7.7.1",
"solc": "0.8.27",
"typescript": "^5.9.3",
"undici": "^6.24.1",
"vite": "^8.0.8",
"viem": "^2.41.2",
"vitest": "^4.1.4"
},
"pnpm": {
"overrides": {
"@babel/helpers": "7.29.2",
"@graphql-codegen/client-preset": "5.2.4",
"ajv": "8.18.0",
"axios": "1.15.0",
"flatted": "3.4.2",
"handlebars": "4.7.9",
"js-yaml": "4.1.1",
"lodash": "4.18.1",
"micromatch>picomatch": "2.3.2",
"rollup": "4.60.1",
"tinyglobby>picomatch": "4.0.4",
"tmp": "0.2.4",
"undici": "6.24.1",
"vite": "8.0.8",
"vitest>picomatch": "4.0.4",
"yaml": "2.8.3"
}
},
"lint-staged": {
"*.{json,gql}": "biome check --write --no-errors-on-unmatched",
"*.[tj]s*": "biome check --write --no-errors-on-unmatched && lint:address"
},
"commitlint": {
"extends": ["@commitlint/config-conventional"]
}
}