@foundry-rs/anvil 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.
Files changed (2) hide show
  1. package/README.md +4 -0
  2. package/package.json +34 -0
package/README.md ADDED
@@ -0,0 +1,4 @@
1
+ # Anvil
2
+
3
+ Anvil is a fast local Ethereum development node.
4
+ The cast binary can be used both within and outside of a Foundry project.
package/package.json ADDED
@@ -0,0 +1,34 @@
1
+ {
2
+ "name": "@foundry-rs/anvil",
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",
7
+ "bin": {
8
+ "anvil": "./bin.mjs"
9
+ },
10
+ "files": [
11
+ "bin",
12
+ "dist"
13
+ ],
14
+ "scripts": {
15
+ "postinstall": "node ./dist/install.mjs"
16
+ },
17
+ "optionalDependencies": {
18
+ "@foundry-rs/anvil-darwin-arm64": "1.4.4-nightly.20251028.9273fd8",
19
+ "@foundry-rs/anvil-darwin-amd64": "1.4.4-nightly.20251028.9273fd8",
20
+ "@foundry-rs/anvil-linux-arm64": "1.4.4-nightly.20251028.9273fd8",
21
+ "@foundry-rs/anvil-linux-amd64": "1.4.4-nightly.20251028.9273fd8",
22
+ "@foundry-rs/anvil-win32-amd64": "1.4.4-nightly.20251028.9273fd8"
23
+ },
24
+ "publishConfig": {
25
+ "access": "public",
26
+ "provenance": true,
27
+ "registry": "https://registry.npmjs.org"
28
+ },
29
+ "license": "MIT OR Apache-2.0",
30
+ "repository": {
31
+ "directory": "npm",
32
+ "url": "https://github.com/foundry-rs/foundry"
33
+ }
34
+ }