UNPKG

@biconomy/ecosystem

Version:

Testing infrastructure for abstractjs with ephemeral networks

78 lines (77 loc) 1.72 kB
{ "name": "@biconomy/ecosystem", "publishConfig": { "access": "public" }, "version": "0.5.2", "description": "Testing infrastructure for abstractjs with ephemeral networks", "module": "dist/index.mjs", "main": "dist/index.js", "types": "dist/index.d.ts", "files": [ "dist", "scripts" ], "scripts": { "init": "bun run ./scripts/validate:ecosystem.ts", "fetch:bytecode": "bun run ./scripts/fetch:bytecode.ts", "format": "biome format . --write", "lint": "biome check .", "lint:fix": "bun run lint --write", "typecheck": "tsc --noEmit", "build": "tsup", "dev": "tsup --watch", "prepublishOnly": "bun run build", "changeset": "changeset", "changeset:version": "changeset version", "changeset:release": "bun run build && changeset publish", "watch": "tsup --watch" }, "devDependencies": { "@biconomy/abstractjs-canary": "0.4.7", "@biomejs/biome": "1.9.4", "@changesets/cli": "^2.28.1", "@rhinestone/module-sdk": "latest", "@types/bun": "latest", "dotenv": "^16.4.7", "simple-git-hooks": "^2.11.1", "typescript": "^5", "viem": "^2.0.0", "tsup": "^8.1.0" }, "dependencies": { "@pimlico/alto": "0.0.4", "get-port": "^7.1.0", "prool": "^0.0.23" }, "peerDependencies": { "viem": "^2.0.0" }, "engines": { "node": ">=18", "bun": ">=1.0.0" }, "keywords": [ "biconomy", "ethereum", "testing", "smart-contracts", "account-abstraction", "erc-4337", "anvil", "bundler", "mee" ], "author": "Joe Pegler", "license": "MIT", "simple-git-hooks": { "pre-commit": "bun run format && bun run lint:fix" }, "exports": { ".": { "types": "./dist/index.d.ts", "import": "./dist/index.mjs", "require": "./dist/index.js" } } }