UNPKG

@malda-protocol/protocol-config

Version:

Centralized contract addresses, constants, and token configurations for Malda Protocol

95 lines 2.4 kB
{ "name": "@malda-protocol/protocol-config", "version": "2.0.2", "description": "Centralized contract addresses, constants, and token configurations for Malda Protocol", "type": "module", "main": "./dist/index.js", "types": "./dist/index.d.ts", "files": [ "dist/" ], "exports": { ".": { "types": "./dist/index.d.ts", "import": "./dist/index.js", "require": "./dist/index.js" }, "./production": { "types": "./dist/production/index.d.ts", "import": "./dist/production/index.js", "require": "./dist/production/index.js" }, "./testnet": { "types": "./dist/testnet/index.d.ts", "import": "./dist/testnet/index.js", "require": "./dist/testnet/index.js" }, "./shared": { "types": "./dist/shared/index.d.ts", "import": "./dist/shared/index.js", "require": "./dist/shared/index.js" }, "./abis": { "types": "./dist/abis/index.d.ts", "import": "./dist/abis/index.js", "require": "./dist/abis/index.js" } }, "keywords": [ "malda", "finance", "protocol", "config", "defi", "blockchain", "ethereum", "linea", "base", "arbitrum", "optimism" ], "author": "Malda Protocol", "license": "MIT", "repository": { "type": "git", "url": "https://github.com/malda-protocol/protocol-config.git" }, "homepage": "https://github.com/malda-protocol/protocol-config#readme", "bugs": { "url": "https://github.com/malda-protocol/protocol-config/issues" }, "dependencies": { "viem": ">=1.0.0", "zod": "^3.22.0" }, "devDependencies": { "@types/node": "^20.0.0", "prettier": "^3.5.3", "typescript": "^5.3.0" }, "peerDependencies": { "@wagmi/core": ">=2.0.0", "viem": ">=1.0.0" }, "peerDependenciesMeta": { "@wagmi/core": { "optional": false } }, "engines": { "node": ">=22.0.0", "pnpm": ">=8.0.0" }, "scripts": { "build": "tsc", "clean": "rm -rf dist", "dev": "tsc --watch", "type-check": "tsc --noEmit", "format": "prettier --write .", "format:check": "prettier --check .", "release:patch": "./scripts/release.sh patch", "release:minor": "./scripts/release.sh minor", "release:major": "./scripts/release.sh major", "publish:check": "pnpm run clean && pnpm run build && pnpm publish --dry-run" } }