@moonwall/cli
Version:
Testing framework for the Moon family of projects
140 lines • 3.86 kB
JSON
{
"name": "@moonwall/cli",
"type": "module",
"version": "5.18.1",
"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/cli"
},
"bugs": {
"url": "https://github.com/Moonsong-Labs/moonwall/issues"
},
"keywords": [
"moonwall",
"moonbeam",
"moondance",
"polkadot",
"kusama",
"substrate"
],
"exports": {
".": {
"types": "./dist/types/src/index.d.ts",
"import": "./dist/index.js",
"bun": "./src/cmds/entrypoint.ts"
}
},
"module": "./dist/index.js",
"types": "./dist/types/src/index.d.ts",
"bin": {
"moonwall": "./moonwall.mjs",
"moondebug": "./moondebug.mjs"
},
"engines": {
"node": ">=20",
"pnpm": ">=7"
},
"files": [
"dist",
"bin",
"*.d.ts",
"*.mjs"
],
"dependencies": {
"@acala-network/chopsticks": "^1.2.5",
"@ast-grep/napi": "^0.40.0",
"@effect/cluster": "^0.55.0",
"@effect/experimental": "^0.57.10",
"@effect/platform": "^0.93.6",
"@effect/platform-node": "^0.103.0",
"@effect/rpc": "^0.72.2",
"@effect/sql": "^0.48.6",
"@effect/workflow": "^0.15.1",
"@inquirer/prompts": "^8.0.2",
"@octokit/rest": "22.0.1",
"@types/react": "19.2.7",
"@types/tmp": "0.2.6",
"@vitest/ui": "^3.2.4",
"@zombienet/orchestrator": "0.0.113",
"@zombienet/utils": "^0.0.30",
"bottleneck": "2.19.5",
"cfonts": "^3.3.1",
"chalk": "^5.6.2",
"clear": "0.1.0",
"cli-progress": "3.12.0",
"colors": "1.4.0",
"dockerode": "4.0.9",
"dotenv": "17.2.3",
"effect": "^3.19.8",
"ethers": "^6.16.0",
"ink": "^6.5.1",
"jsonc-parser": "3.3.1",
"minimatch": "10.1.1",
"pino": "^10.1.0",
"polkadot-api": "1.19.2",
"react": "^19.2.1",
"reflect-metadata": "^0.2.0",
"semver": "^7.7.3",
"tiny-invariant": "^1.3.3",
"tmp": "^0.2.5",
"viem": "2.41.2",
"vitest": "3.2.4",
"web3": "^4.16.0",
"web3-providers-ws": "4.0.8",
"ws": "^8.18.3",
"yaml": "2.8.2",
"yargs": "^18.0.0",
"@moonwall/types": "5.18.1",
"@moonwall/util": "5.18.1"
},
"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/clear": "^0.1.4",
"@types/cli-progress": "3.11.6",
"@types/node": "^24.10.1",
"@types/semver": "^7.7.1",
"@types/yargs": "^17.0.35",
"tsup": "^8.5.1",
"tsx": "^4.21.0",
"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 && pnpm generate-types",
"lint": "pnpm biome lint ./src",
"lint:fix": "pnpm biome lint ./src --apply",
"fmt": "biome format .",
"fmt:fix": "biome format . --write",
"generate-types": "tsc",
"watch": "tsup src --format esm --watch",
"typecheck": "pnpm exec tsc --noEmit",
"test": "vitest run src/internal/effect/__tests__/",
"prepublish": "pnpm run build && pnpm run generate-types"
}
}