forked from morpho-org/morpho-blue-reward-programs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
96 lines (96 loc) · 2.16 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
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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "@morpho-org/blue-reward-programs",
"version": "1.4.12",
"author": "Morpho Association <contact@morpho.org>",
"license": "MIT",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"private": false,
"files": [
"lib",
"README.md",
"LICENSE",
"package.json"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "tsc --build tsconfig.build.json",
"test": "jest",
"lint": "prettier --check src",
"lint:fix": "prettier --write src"
},
"devDependencies": {
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@types/jest": "^29.5.12",
"@types/node": "^20.12.12",
"conventional-changelog-conventionalcommits": "^8.0.0",
"jest": "^29.7.0",
"prettier": "^3.3.2",
"ts-jest": "^29.1.5",
"ts-node": "^10.9.2",
"typescript": "^5.4.5"
},
"dependencies": {
"@morpho-org/blue-rewards-core-sdk": "0.0.9",
"@morpho-org/morpho-ts": "^1.4.5",
"viem": "^2.9.31"
},
"lint-staged": {
"*.ts": "prettier"
},
"release": {
"branches": [
"main",
"next"
],
"plugins": [
[
"@semantic-release/commit-analyzer",
{
"preset": "conventionalcommits",
"releaseRules": [
{
"type": "build",
"scope": "deps",
"release": "patch"
},
{
"type": "chore",
"release": false
},
{
"release": "patch"
}
]
}
],
[
"@semantic-release/release-notes-generator",
{
"preset": "conventionalcommits",
"presetConfig": {
"types": [
{
"type": "feat",
"section": "Features"
},
{
"type": "fix",
"section": "Bug Fixes"
},
{
"type": "build",
"section": "Dependencies and Other Build Updates",
"hidden": false
}
]
}
}
],
"@semantic-release/npm",
"@semantic-release/github"
]
}
}