UNPKG

@moonwall/util

Version:

Testing framework for the Moon family of projects

106 lines 2.81 kB
{ "name": "@moonwall/util", "type": "module", "version": "5.18.3", "description": "Testing framework for the Moon family of projects", "author": "timbrinded", "license": "ISC", "homepage": "https://github.com/Moonsong-Labs/moonwall#readme", "repository": { "type": "git", "url": "git+https://github.com/Moonsong-Labs/moonwall.git", "directory": "packages/util" }, "bugs": { "url": "https://github.com/Moonsong-Labs/moonwall/issues" }, "keywords": [ "moonwall", "moonbeam", "moondance", "polkadot", "kusama", "substrate" ], "exports": { ".": { "types": "./dist/types/index.d.ts", "import": "./dist/index.js" } }, "module": "./dist/index.js", "types": "./dist/types/index.d.ts", "engines": { "node": ">=20", "pnpm": ">=7" }, "files": [ "dist", "bin", "*.d.ts", "*.mjs" ], "dependencies": { "@inquirer/prompts": "^8.0.2", "@vitest/ui": "^3.2.4", "arkregex": "^0.0.4", "bottleneck": "2.19.5", "chalk": "^5.6.2", "clear": "0.1.0", "colors": "1.4.0", "dotenv": "17.2.3", "ethers": "^6.16.0", "pino": "^10.1.0", "pino-pretty": "^13.1.3", "rlp": "3.0.0", "semver": "^7.7.3", "tiny-invariant": "^1.3.3", "viem": "2.41.2", "vitest": "3.2.4", "web3": "^4.16.0", "ws": "^8.18.3", "yargs": "^18.0.0", "@moonwall/types": "5.18.3" }, "devDependencies": { "@biomejs/biome": "^2.3.8", "@polkadot/api": "16.1.2", "@polkadot/api-derive": "16.1.2", "@polkadot/keyring": "13.5.1", "@polkadot/rpc-provider": "16.1.2", "@polkadot/types": "16.1.2", "@polkadot/types-codec": "16.1.2", "@polkadot/util": "13.5.1", "@polkadot/util-crypto": "13.5.1", "@types/node": "^24.10.1", "@types/ws": "^8.18.1", "@types/yargs": "^17.0.35", "tsup": "^8.5.1", "typescript": "5.9.3" }, "peerDependencies": { "@polkadot/api": "^16.1.0", "@polkadot/api-derive": "^16.1.0", "@polkadot/keyring": "^13.0.0", "@polkadot/rpc-provider": "^16.1.0", "@polkadot/types": "^16.1.0", "@polkadot/types-codec": "^16.1.0", "@polkadot/util": "^13.0.0", "@polkadot/util-crypto": "^13.0.0" }, "publishConfig": { "access": "public" }, "scripts": { "clean": "rm -rf dist && rm -rf node_modules", "build": "pnpm exec rm -rf dist && tsup src --format esm --no-splitting --sourcemap && pnpm generate-types", "generate-types": "tsc", "lint": "pnpm biome lint ./src", "lint:fix": "pnpm biome lint ./src --apply", "fmt": "biome format .", "fmt:fix": "biome format . --write", "watch": "tsup src --format esm --watch", "typecheck": "pnpm exec tsc --noEmit", "prepublish": "pnpm run build && pnpm run generate-types" } }