@foundry-rs/cast-darwin-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.
Files changed (2) hide show
  1. package/bin/cast +0 -0
  2. package/package.json +38 -0
package/bin/cast ADDED
Binary file
package/package.json ADDED
@@ -0,0 +1,38 @@
1
+ {
2
+ "name": "@foundry-rs/cast-darwin-amd64",
3
+ "version": "1.4.4-nightly.20251028.9273fd8",
4
+ "type": "module",
5
+ "homepage": "https://getfoundry.sh/cast",
6
+ "description": "Swiss Army knife for interacting with Ethereum applications from the command line (macOS x64)",
7
+ "bin": {
8
+ "cast": "./bin/cast"
9
+ },
10
+ "os": [
11
+ "darwin"
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
+ }