@foundry-rs/forge-darwin-amd64 1.3.2-nightly.20250902.99514b6

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 (3) hide show
  1. package/README.md +4 -0
  2. package/bin/forge +0 -0
  3. package/package.json +38 -0
package/README.md ADDED
@@ -0,0 +1,4 @@
1
+ # forge
2
+
3
+ This is the macOS 64-bit binary for `forge`, a CLI tool for testing, building, and deploying your smart contracts.
4
+ See <https://getfoundry.sh/forge/overview> for details.
package/bin/forge ADDED
Binary file
package/package.json ADDED
@@ -0,0 +1,38 @@
1
+ {
2
+ "name": "@foundry-rs/forge-darwin-amd64",
3
+ "version": "1.3.2-nightly.20250902.99514b6",
4
+ "type": "module",
5
+ "homepage": "https://getfoundry.sh/forge",
6
+ "description": "Fast and flexible Ethereum testing framework (macOS amd64)",
7
+ "bin": {
8
+ "forge": "./bin/forge"
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
+ }