@foundry-rs/chisel-darwin-arm64 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/chisel +0 -0
- package/package.json +38 -0
package/bin/chisel
ADDED
|
Binary file
|
package/package.json
ADDED
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@foundry-rs/chisel-darwin-arm64",
|
|
3
|
+
"version": "1.4.4-nightly.20251028.9273fd8",
|
|
4
|
+
"type": "module",
|
|
5
|
+
"homepage": "https://getfoundry.sh/chisel",
|
|
6
|
+
"description": "Chisel is a fast, utilitarian, and verbose Solidity REPL (macOS arm64)",
|
|
7
|
+
"bin": {
|
|
8
|
+
"chisel": "./bin/chisel"
|
|
9
|
+
},
|
|
10
|
+
"os": [
|
|
11
|
+
"darwin"
|
|
12
|
+
],
|
|
13
|
+
"cpu": [
|
|
14
|
+
"arm64"
|
|
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
|
+
}
|