generate-pi
Version:
Find PI(π) to the Nth Digit
66 lines (65 loc) • 1.16 kB
JSON
{
"name": "generate-pi",
"version": "1.25.0",
"description": "Find PI(π) to the Nth Digit",
"license": "MIT",
"repository": "palashmon/generate-pi",
"author": "Palash Mondal <palashm@live.in>",
"type": "module",
"exports": {
"types": "./index.d.ts",
"default": "./index.js"
},
"sideEffects": false,
"engines": {
"node": ">=20.18.3"
},
"scripts": {
"test": "xo && ava",
"lint": "xo --fix"
},
"files": [
"index.js",
"index.d.ts"
],
"keywords": [
"algorithm",
"algorithmic",
"approximation",
"calc",
"calculation",
"circle",
"circumference",
"constant",
"decimal",
"diameter",
"generate",
"geometry",
"irrational",
"library",
"math",
"mathematical",
"mathematics",
"number",
"pi",
"precision",
"ratio",
"tiny",
"trigonometry",
"π"
],
"dependencies": {
"decimal.js": "^10.5.0",
"is-positive-int": "^1.22.0",
"node-cache": "^5.1.2"
},
"devDependencies": {
"ava": "6.3.0",
"xo": "0.60.0"
},
"xo": {
"rules": {
"import/no-anonymous-default-export": "off"
}
}
}