-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
116 lines (116 loc) · 2.51 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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
{
"name": "viem-tracer",
"version": "1.0.0",
"author": {
"name": "Romain (Rubilmax) Milon",
"email": "[email protected]",
"url": "https://github.com/rubilmax"
},
"license": "MIT",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib"
],
"scripts": {
"prepare": "husky",
"lint": "biome check",
"build": "tsc --build tsconfig.build.json",
"test": "dotenv -- vitest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Rubilmax/viem-tracer.git"
},
"bugs": {
"url": "https://github.com/Rubilmax/viem-tracer/issues"
},
"keywords": [
"viem",
"trace",
"hardhat",
"anvil",
"test",
"cheat",
"rpc",
"erc20"
],
"dependencies": {
"colors": "^1.4.0"
},
"peerDependencies": {
"viem": "^2.21.0"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@commitlint/cli": "^19.6.0",
"@commitlint/config-conventional": "^19.6.0",
"@types/lodash.kebabcase": "^4.1.9",
"@types/node": "^22.10.2",
"@vitest/coverage-v8": "^2.1.8",
"conventional-changelog-conventionalcommits": "^8.0.0",
"dotenv-cli": "^7.4.4",
"husky": "^9.1.7",
"lint-staged": "^15.2.11",
"lodash.kebabcase": "^4.1.1",
"semantic-release": "^24.2.0",
"typescript": "^5.7.2",
"viem": "^2.22.2",
"viem-deal": "^2.0.4",
"vitest": "^2.1.8"
},
"lint-staged": {
"*.ts": "yarn biome check"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"release": {
"branches": [
"main",
"next"
],
"plugins": [
[
"@semantic-release/commit-analyzer",
{
"preset": "conventionalcommits",
"releaseRules": [
{
"type": "build",
"scope": "deps",
"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"
]
}
}