@foundry-rs/chisel 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
+ # Chisel
2
+
3
+ Chisel is a fast, utilitarian, and verbose Solidity REPL.
4
+ The chisel 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/chisel",
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",
7
+ "bin": {
8
+ "chisel": "./bin.mjs"
9
+ },
10
+ "files": [
11
+ "bin",
12
+ "dist"
13
+ ],
14
+ "scripts": {
15
+ "postinstall": "node ./dist/install.mjs"
16
+ },
17
+ "optionalDependencies": {
18
+ "@foundry-rs/chisel-darwin-arm64": "1.4.4-nightly.20251028.9273fd8",
19
+ "@foundry-rs/chisel-darwin-amd64": "1.4.4-nightly.20251028.9273fd8",
20
+ "@foundry-rs/chisel-linux-arm64": "1.4.4-nightly.20251028.9273fd8",
21
+ "@foundry-rs/chisel-linux-amd64": "1.4.4-nightly.20251028.9273fd8",
22
+ "@foundry-rs/chisel-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
+ }