UNPKG

@hypotenuselabs/ts-chainlink-datafeed

Version:

Typescript library for interacting with Chainlink datafeeds

71 lines (70 loc) 1.76 kB
{ "name": "@hypotenuselabs/ts-chainlink-datafeed", "license": "MIT", "version": "0.0.11", "description": "Typescript library for interacting with Chainlink datafeeds", "main": "./dist/index.cjs", "module": "./dist/index.js", "types": "./dist/index.d.cts", "sideEffects": false, "exports": { "require": { "types": "./dist/index.d.cts", "default": "./dist/index.cjs" }, "import": { "types": "./dist/index.d.ts", "default": "./dist/index.js" } }, "files": [ "dist" ], "repository": { "type": "git", "url": "git+ssh://git@github.com/hyplabs/ts-chainlink-datafeed.git" }, "keywords": [ "chainlink", "datafeed", "viem", "typescript", "ethers" ], "author": "Alex McGonagle", "type": "module", "scripts": { "example": "tsx example/index.ts", "arbitrum": "tsx example/arbitrum.ts", "test": "vitest", "test:ui": "vitest --ui", "test:run": "vitest run", "updateAllFeeds": "tsx ./scraper/playwright.ts && prettier --write ./src/dataFeeds/*.ts", "build": "rm -rf dist && tsup src/index.ts --minify --format cjs,esm --dts" }, "devDependencies": { "@types/node": "^20.10.8", "@types/react": "^18.2.48", "playwright": "^1.38.1", "prettier": "^3.0.3", "tsup": "^8.0.1", "tsx": "^3.13.0", "typescript": "^5.2.2", "viem": ">=2.0.0", "vitest": "^1.1.3" }, "peerDependencies": { "@ponder/utils": "^0.1.1", "viem": ">=2.0.0" }, "optionalDependencies": { "react": "^18.2.0" }, "bugs": { "url": "https://github.com/hyplabs/ts-chainlink-datafeed/issues" }, "homepage": "https://github.com/hyplabs/ts-chainlink-datafeed#readme", "directories": { "example": "example" } }