@foundry-rs/anvil-win32-amd64 1.4.4-nightly.20251028.9273fd8
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/bin/anvil.exe +0 -0
- package/package.json +38 -0
package/bin/anvil.exe
ADDED
|
Binary file
|
package/package.json
ADDED
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@foundry-rs/anvil-win32-amd64",
|
|
3
|
+
"version": "1.4.4-nightly.20251028.9273fd8",
|
|
4
|
+
"type": "module",
|
|
5
|
+
"homepage": "https://getfoundry.sh/anvil",
|
|
6
|
+
"description": "Anvil is a fast local Ethereum development node (Windows x64)",
|
|
7
|
+
"bin": {
|
|
8
|
+
"anvil": "./bin/anvil.exe"
|
|
9
|
+
},
|
|
10
|
+
"os": [
|
|
11
|
+
"win32"
|
|
12
|
+
],
|
|
13
|
+
"cpu": [
|
|
14
|
+
"x64"
|
|
15
|
+
],
|
|
16
|
+
"files": [
|
|
17
|
+
"bin"
|
|
18
|
+
],
|
|
19
|
+
"engines": {
|
|
20
|
+
"node": ">=20"
|
|
21
|
+
},
|
|
22
|
+
"license": "MIT OR Apache-2.0",
|
|
23
|
+
"repository": {
|
|
24
|
+
"directory": "npm",
|
|
25
|
+
"url": "https://github.com/foundry-rs/foundry"
|
|
26
|
+
},
|
|
27
|
+
"keywords": [
|
|
28
|
+
"foundry",
|
|
29
|
+
"testing",
|
|
30
|
+
"ethereum",
|
|
31
|
+
"solidity",
|
|
32
|
+
"blockchain",
|
|
33
|
+
"smart-contracts"
|
|
34
|
+
],
|
|
35
|
+
"publishConfig": {
|
|
36
|
+
"provenance": true
|
|
37
|
+
}
|
|
38
|
+
}
|