@sushiswap/currency
Version:
Sushi Currency
61 lines • 1.65 kB
JSON
{
"name": "@sushiswap/currency",
"version": "0.1.3",
"description": "Sushi Currency",
"keywords": [
"sushi",
"currency",
"token",
"native"
],
"repository": {
"type": "git",
"url": "https://github.com/sushiswap/sushiswap.git",
"directory": "packages/currency"
},
"license": "MIT",
"author": "Matthew Lilley <hello@matthewLilley.com>",
"sideEffects": false,
"main": "dist/index.js",
"module": "dist/index.mjs",
"source": "src/index.ts",
"typings": "dist/index.d.ts",
"files": [
"dist/**"
],
"jest": {
"preset": "@sushiswap/jest-config/node"
},
"dependencies": {
"@ethersproject/address": "5.7.0",
"@ethersproject/units": "^5.7.0",
"@sushiswap/chain": "0.1.2",
"@sushiswap/math": "0.1.0",
"lodash.flatmap": "4.5.0",
"tiny-invariant": "1.3.1",
"zod": "3.21.4"
},
"devDependencies": {
"@sushiswap/eslint-config": "0.1.1",
"@sushiswap/jest-config": "0.1.0",
"@sushiswap/prettier-config": "0.1.1",
"@sushiswap/typescript-config": "0.1.0",
"@types/jest": "^29.2.0",
"@types/lodash.flatmap": "4.5.7",
"@types/react": "18.2.14",
"@types/react-dom": "18.2.6",
"eslint": "8.43.0",
"jest": "29.3.1",
"tsup": "7.1.0",
"typescript": "5.1.6"
},
"scripts": {
"build": "tsup src/index.ts --format esm,cjs --dts",
"check": "tsc --pretty --noEmit",
"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",
"lint:fix": "TIMING=1 eslint src --fix",
"test": "jest --passWithNoTests"
}
}