@paimaexample/evm-contracts 0.3.38 → 0.3.39
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.
- package/deno.json +6 -6
- package/package.json +1 -1
package/deno.json
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@paimaexample/evm-contracts",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.39",
|
|
4
4
|
"license": "MIT",
|
|
5
|
-
"exports": "
|
|
5
|
+
"exports": "mod.ts",
|
|
6
6
|
"imports": {
|
|
7
7
|
"@wagmi/cli": "npm:@wagmi/cli@2.3.1",
|
|
8
|
-
"hardhat": "npm:hardhat@3.0.
|
|
9
|
-
"@nomicfoundation/hardhat-ignition": "npm:@nomicfoundation/hardhat-ignition@3.0.
|
|
10
|
-
"@nomicfoundation/hardhat-viem": "npm:@nomicfoundation/hardhat-viem@3.0.0
|
|
8
|
+
"hardhat": "npm:hardhat@3.0.4",
|
|
9
|
+
"@nomicfoundation/hardhat-ignition": "npm:@nomicfoundation/hardhat-ignition-viem@3.0.2",
|
|
10
|
+
"@nomicfoundation/hardhat-viem": "npm:@nomicfoundation/hardhat-viem@3.0.0",
|
|
11
11
|
},
|
|
12
12
|
"tasks": {
|
|
13
13
|
// deno doesn't support installing packages from Github (https://github.com/denoland/deno/issues/18478)
|
|
@@ -16,7 +16,7 @@
|
|
|
16
16
|
"link:forge": "bash -c 'if ! [ -L ../../../../node_modules/forge-std ]; then ln -s ../forge-std ../../../../node_modules/forge-std; fi'",
|
|
17
17
|
// TODO: update `hardhat docgen` to Hardhat v3
|
|
18
18
|
// note: this should be `deno run hardhat3 compile`, but Deno doesn't like that so we have to use the full name
|
|
19
|
-
"build:contracts": "forge build && deno run -A npm:hardhat@3.0.
|
|
19
|
+
"build:contracts": "forge build && deno run -A npm:hardhat@3.0.4 compile",
|
|
20
20
|
"build:publish": "deno run -A prepare.ts",
|
|
21
21
|
"prebuild": "rm -rf ./build",
|
|
22
22
|
"build": "deno task prebuild && deno task build:contracts && deno task build:publish",
|