Skip to main content
Home
This release is 46 versions behind 0.3.104 — the latest version of @paimaexample/evm-contracts. Jump to latest
It is unknown whether this package works with Cloudflare Workers, Node.js, Deno, Bun, Browsers
It is unknown whether this package works with Cloudflare Workers
It is unknown whether this package works with Node.js
It is unknown whether this package works with Deno
It is unknown whether this package works with Bun
It is unknown whether this package works with Browsers
JSR Score
76%
Published
a month ago (0.3.50)
Package root>deno.json
{ "name": "@paimaexample/evm-contracts", "version": "0.3.50", "license": "MIT", "exports": "./mod.ts", "imports": { "@wagmi/cli": "npm:@wagmi/cli@2.3.1", "hardhat": "npm:hardhat@3.0.4", "@nomicfoundation/hardhat-ignition": "npm:@nomicfoundation/hardhat-ignition-viem@3.0.2", "@nomicfoundation/hardhat-viem": "npm:@nomicfoundation/hardhat-viem@3.0.0", }, "tasks": { // deno doesn't support installing packages from Github (https://github.com/denoland/deno/issues/18478) // we can't easily use file: dependency as that isn't supported either (https://github.com/denoland/deno/issues/18474) // so instead we symlink to a local copy of the project "link:forge": "bash -c 'if ! [ -L ../../../../node_modules/forge-std ]; then ln -s ../forge-std ../../../../node_modules/forge-std; fi'", // TODO: update `hardhat docgen` to Hardhat v3 // note: this should be `deno run hardhat3 compile`, but Deno doesn't like that so we have to use the full name "build:contracts": "forge build && deno run -A npm:hardhat@3.0.4 compile", "build:publish": "deno run -A prepare.ts", "prebuild": "rm -rf ./build", "build": "deno task prebuild && deno task build:contracts && deno task build:publish", "clean": "rm -rf ./artifacts && rm -rf ./cache && rm -rf ./build", "test": "forge test", // TODO: how to integrate Prettier plugin with deno and/or forge? "prettier": "prettier --write '**/*.{sol,js,ts}' --ignore-path .gitignore" } }