UNPKG

@parabolfi/core

Version:

Core utilities for Parabol SDK

93 lines 1.95 kB
{ "name": "@parabolfi/core", "version": "1.4.7", "license": "MIT", "private": false, "description": "Core utilities for Parabol SDK", "repository": { "type": "git", "url": "https://github.com/Parabol-Finance/sdks" }, "bugs": { "url": "https://github.com/Parabol-Finance/sdks/issues" }, "homepage": "https://parabol.fi/", "author": { "name": "Parabol Labs Ltd", "email": "dev@parabol.fi", "url": "https://parabol.fi" }, "maintainers": [ { "name": "Berkay Ermis", "email": "berkay@parabol.fi" }, { "name": "Yusuf Benli", "email": "yusuf@parabol.fi" } ], "type": "module", "main": "./dist/index.js", "module": "./dist/index.js", "types": "./dist/index.d.ts", "files": [ "dist/**/*.js", "dist/**/*.d.ts" ], "exports": { ".": { "types": "./dist/index.d.ts", "import": "./dist/index.js", "default": "./dist/index.js" }, "./package.json": "./package.json" }, "dependencies": { "big.js": "^6.2.2", "date-fns": "^4.1.0", "date-fns-tz": "^3.2.0", "viem": "^2.21.51" }, "engines": { "node": ">=18" }, "keywords": [ "parabol", "sdk", "ethereum", "defi", "stablecoin", "yield", "lending", "borrowing", "tbill", "fixed-rate", "earn", "blockchain", "finance", "web3", "rwa", "nft", "reserve-stability-pool", "rsp", "stability-pool", "parabolusd", "parausd", "note", "position" ], "devDependencies": { "@types/big.js": "^6.2.2" }, "scripts": { "build": "rm -rf dist && pnpm run build:js && pnpm run build:types", "build:types": "tsc --emitDeclarationOnly --declarationMap", "build:js": "tsup", "clean": "rm -rf dist", "dev": "tsup src/index.ts --format esm --watch", "test": "jest --silent", "lint": "eslint . --ext .ts", "typecheck": "tsc --noEmit" } }