@sushiswap/math
Version:
52 lines • 1.35 kB
JSON
{
"name": "@sushiswap/math",
"version": "0.1.0",
"description": "Sushi Math",
"keywords": [
"sushi",
"math"
],
"repository": {
"type": "git",
"url": "https://github.com/sushiswap/sushiswap.git",
"directory": "packages/math"
},
"license": "MIT",
"author": "Matthew Lilley <hello@matthewLilley.com>",
"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": {
"big.js": "^6.1.1",
"decimal.js-light": "^2.5.1",
"jsbi": "^4.1.0",
"tiny-invariant": "^1.2.0",
"toformat": "^2.0.0"
},
"devDependencies": {
"@sushiswap/eslint-config": "0.0.0",
"@sushiswap/jest-config": "0.0.0",
"@sushiswap/prettier-config": "0.0.0",
"@sushiswap/typescript-config": "0.0.0",
"@types/big.js": "^6.1.3",
"@types/jest": "^27.5.1",
"eslint": "^8.20.0",
"jest": "^28.1.0",
"tsup": "^6.2.0",
"typescript": "4.8.2"
},
"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",
"test": "jest --passWithNoTests"
}
}