@coinbase/onchaintestkit
Version:
End-to-end testing toolkit for blockchain applications, powered by Playwright
83 lines (82 loc) • 2.05 kB
JSON
{
"name": "@coinbase/onchaintestkit",
"version": "1.2.0",
"description": "End-to-end testing toolkit for blockchain applications, powered by Playwright",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"bin": {
"prepare-coinbase": "./src/cli/prepare-coinbase.mjs",
"prepare-metamask": "./src/cli/prepare-metamask.mjs"
},
"scripts": {
"build": "tsc -p tsconfig.build.json",
"clean": "rimraf dist",
"format": "biome format --write .",
"format:check": "biome format .",
"lint": "biome check .",
"lint:fix": "biome check --apply .",
"lint:unsafe": "biome check --apply-unsafe .",
"test": "playwright test",
"prepare-metamask": "node src/cli/prepare-metamask.mjs",
"prepare-coinbase": "node src/cli/prepare-coinbase.mjs",
"prepublishOnly": "npm run clean && npm run build"
},
"keywords": [
"blockchain",
"testing",
"e2e",
"playwright",
"web3",
"wallet",
"metamask",
"coinbase-wallet"
],
"author": "Coinbase",
"license": "MIT",
"peerDependencies": {
"@playwright/test": "^1.34.0"
},
"dependencies": {
"@coinbase/onchainkit": "^0.36.4",
"ethers": "^5.7.2",
"extract-zip": "^2.0.1",
"fs-extra": "^11.1.1",
"node-fetch": "^3.3.2",
"viem": "^1.10.9"
},
"devDependencies": {
"@biomejs/biome": "1.5.3",
"@changesets/cli": "^2.29.5",
"@coinbase/onchaintestkit": "^1.2.0",
"@playwright/test": "^1.34.0",
"@types/fs-extra": "^11.0.1",
"@types/node": "^18.16.0",
"rimraf": "^6.0.1",
"typescript": "^5.0.4"
},
"engines": {
"node": ">=14.0.0"
},
"publishConfig": {
"access": "public"
},
"workspaces": [
".",
"example/frontend"
],
"exports": {
".": "./dist/src/index.js",
"./*": "./dist/src/*",
"./src/*": "./src/*",
"./package.json": "./package.json"
},
"packageManager": "yarn@4.9.2",
"resolutions": {
"ws": "^8.17.1",
"@babel/runtime": "^7.26.10",
"brace-expansion": "^2.0.2"
}
}