@nomicfoundation/hardhat-viem 3.0.7 → 3.0.8

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/CHANGELOG.md +10 -0
  2. package/package.json +9 -8
package/CHANGELOG.md CHANGED
@@ -1,5 +1,15 @@
1
1
  # @nomicfoundation/hardhat-viem
2
2
 
3
+ ## 3.0.8
4
+
5
+ ### Patch Changes
6
+
7
+ - [#8264](https://github.com/NomicFoundation/hardhat/pull/8264) [`8452f97`](https://github.com/NomicFoundation/hardhat/commit/8452f9726205540e1684d3f8458bfd145e790226) Thanks [@alcuadrado](https://github.com/alcuadrado)! - Export `./package.json` so consumers can import the package's manifest.
8
+
9
+ - Updated dependencies:
10
+ - @nomicfoundation/hardhat-errors@3.0.13
11
+ - @nomicfoundation/hardhat-utils@4.1.2
12
+
3
13
  ## 3.0.7
4
14
 
5
15
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nomicfoundation/hardhat-viem",
3
- "version": "3.0.7",
3
+ "version": "3.0.8",
4
4
  "description": "Hardhat plugin for viem",
5
5
  "homepage": "https://github.com/NomicFoundation/hardhat/tree/main/packages/hardhat-viem",
6
6
  "repository": {
@@ -14,7 +14,8 @@
14
14
  "types": "dist/src/index.d.ts",
15
15
  "exports": {
16
16
  ".": "./dist/src/index.js",
17
- "./types": "./dist/src/types.js"
17
+ "./types": "./dist/src/types.js",
18
+ "./package.json": "./package.json"
18
19
  },
19
20
  "keywords": [
20
21
  "ethereum",
@@ -31,7 +32,7 @@
31
32
  "README.md"
32
33
  ],
33
34
  "devDependencies": {
34
- "@nomicfoundation/hardhat-node-test-reporter": "^3.0.5",
35
+ "@nomicfoundation/hardhat-node-test-reporter": "^3.0.7",
35
36
  "@types/node": "^22.0.0",
36
37
  "c8": "^9.1.0",
37
38
  "eslint": "9.25.1",
@@ -39,22 +40,22 @@
39
40
  "prettier": "3.2.5",
40
41
  "rimraf": "^5.0.5",
41
42
  "tsx": "^4.19.3",
42
- "typescript": "~5.8.0",
43
+ "typescript": "~6.0.3",
43
44
  "viem": "^2.47.6",
44
45
  "hardhat": "^3.4.0",
45
46
  "@nomicfoundation/hardhat-test-utils": "^2.0.3"
46
47
  },
47
48
  "dependencies": {
48
- "@nomicfoundation/hardhat-errors": "^3.0.11",
49
- "@nomicfoundation/hardhat-utils": "^4.1.1"
49
+ "@nomicfoundation/hardhat-errors": "^3.0.13",
50
+ "@nomicfoundation/hardhat-utils": "^4.1.2"
50
51
  },
51
52
  "peerDependencies": {
52
53
  "hardhat": "^3.4.0",
53
54
  "viem": "^2.47.6"
54
55
  },
55
56
  "scripts": {
56
- "lint": "pnpm prettier --check && pnpm eslint",
57
- "lint:fix": "pnpm prettier --write && pnpm eslint --fix",
57
+ "lint": "pnpm eslint && pnpm prettier --check",
58
+ "lint:fix": "pnpm eslint --fix && pnpm prettier --write",
58
59
  "eslint": "eslint \"src/**/*.ts\" \"test/**/*.ts\"",
59
60
  "prettier": "prettier \"**/*.{ts,js,md,json}\"",
60
61
  "test": "node --import tsx/esm --test --test-reporter=@nomicfoundation/hardhat-node-test-reporter \"test/*.ts\" \"test/!(fixture-projects|helpers)/**/*.ts\"",