forked from morpho-org/sdks
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.86 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.86 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
{
"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.18.2+sha512.9fb969fa749b3ade6035e0f109f0b8a60b5d08a1a87fdf72e337da90dcc93336e2280ca4e44f2358a649b83c17959e9993e777c2080879f3801e6f0d999ad3dd",
"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",
"coverage": "vitest run --coverage"
},
"devDependencies": {
"@actions/core": "^1.11.1",
"@biomejs/biome": "^1.9.4",
"@commitlint/cli": "^19.7.1",
"@commitlint/config-conventional": "^19.7.1",
"@conventional-changelog/git-client": "^2.0.0",
"@vitest/coverage-v8": "^3.0.5",
"@vitest/ui": "^3.0.5",
"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": "^17.0.0",
"husky": "^9.1.7",
"lint-staged": "^15.4.3",
"semver": "^7.7.1",
"typescript": "^5.7.2",
"viem": "^2.23.0",
"vitest": "^3.0.5"
},
"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"]
}
}