UNPKG

ponder-client

Version:
53 lines (52 loc) 1.28 kB
{ "name": "ponder-client", "version": "0.1.8", "description": "Type-safe, lightweight Ponder client", "author": "Timur Badretdinov", "keywords": [ "typescript", "ponder", "ethereum" ], "license": "MIT", "repository": { "type": "git", "url": "git://github.com/Destiner/ponder-client.git" }, "type": "module", "files": [ "./lib", "./src" ], "main": "./lib/index.js", "types": "./lib/index.d.ts", "typings": "./lib/index.d.ts", "exports": { "types": "./lib/index.d.ts", "import": "./lib/index.js" }, "scripts": { "build": "tsc --p tsconfig.build.json", "lint": "bun run lint:eslint && bun run lint:prettier", "lint:eslint": "eslint \"{src,test}/**/*.ts\"", "lint:prettier": "prettier -c \"{src,test}/**/*.{json,js,ts}\"", "prepack": "bun run build", "test": "vitest", "typecheck": "tsc --noEmit" }, "dependencies": { "@types/node": "^20.11.24" }, "devDependencies": { "@typescript-eslint/eslint-plugin": "^7.1.0", "eslint": "^8.57.0", "eslint-import-resolver-typescript": "^3.6.1", "eslint-plugin-import": "^2.29.1", "prettier": "^3.2.5", "typescript": "5.3.3", "vitest": "^1.3.1" }, "peerDependencies": { "@ponder/core": "^0.2.0" } }