@crypto-dex-sdk/format
Version:
Zenlink Format
35 lines • 894 B
JSON
{
"name": "@crypto-dex-sdk/format",
"version": "0.1.4",
"description": "Zenlink Format",
"author": "zenlinkpro",
"license": "LGPL-2.1-or-later",
"keywords": [
"zenlink",
"format"
],
"main": "dist/index.js",
"module": "dist/index.mjs",
"source": "src/index.ts",
"typings": "dist/index.d.ts",
"files": [
"dist/**"
],
"dependencies": {
"@ethersproject/address": "^5.7.0",
"numeral": "^2.0.6"
},
"devDependencies": {
"@types/numeral": "^2.0.5",
"tsup": "^8.3.6",
"typescript": "5.7.3",
"@crypto-dex-sdk/eslint-config": "0.1.4",
"@crypto-dex-sdk/typescript-config": "0.1.4"
},
"scripts": {
"build": "tsup src/index.ts --format esm,cjs --dts",
"clean": "rm -rf .turbo && rm -rf node_modules && rm -rf dist",
"dev": "tsup src/index.ts --format esm,cjs --watch --dts",
"lint": "TIMING=1 eslint src --fix"
}
}